Arduino Due 2 timer synchronisation?

Hi there I would like to synchron two timer interrupts. I really didnt find any topic about it. Can any one help me doing that ?

You mean like the guy 3 lines down who's working on a modified-sinewave inverter? The topic title is "fastest interrupts" but it's actually about synchronising two output pins.

I mean synchronising two timer interrupts

What are you trying to do? What is the reason for synchronising interrupts?

Just in case you mean something like "I want one timer to occur, say, at double the frequency as another and thus in the middle of that", I've decided to go with a different approach: I compute the GCD of all periods/frequencies, run the timer at that frequency, and then count down.

ArduinoThreads does something similar; my code is a bit more special case, but also on GitHub: GitHub - l-mb/GPIO_Platform: Turn the Arduino Due into a host-driven sensing and actuator platform look, for example, at the code in Sources.cpp - sources_poll().