Hi,
FlashBurn wrote:A problem which is created with synchronous msg passing is that I want to use this msg passing for calling my drivers. So when an irq occures I go through a list and send an "irq" msg to the drivers. The problem here is that this would mean that the actual running thread would be blocking till all the drivers have send received the msg. At the moment I can´t imagine a good way to solve this. This would be a good reason for asynchronous msg passing

But I want to try to go the synchronous way.
It's worse than that. When a process sends a message to another process the sender has to wait until the receiver is ready to receive the message. If a device driver is running (and not waiting for a message) and is interrupted by an IRQ handler that sends a message to the device driver; then the IRQ handler won't be able to send the message until the device driver reaches the "waiting for message" state, and the device driver won't be able to reach the "waiting for message" state until the IRQ handler returns. Basically it's a deadlock (A waits for B while B waits for A, and the computer locks up).
You could disable IRQs when a device driver is running, but that's doesn't fix the problem. For example, a GUI thread is running and a keyboard IRQ occurs, the IRQ handler sends a message to the keyboard driver and the scheduler switches to the keyboard driver (and disables IRQs), then the keyboard driver tries to send a "key pressed" message to the GUI thread, but the GUI thread isn't waiting for a message so the keyboard driver can't send its message. Instead the keyboard driver blocks (and the scheduler runs other threads until the keyboard driver can send its message to the GUI thread). Now another keyboard IRQ occurs and the keyboard driver isn't in the "waiting for a message" state (it's still waiting to send the previous message), so you're screwed again.
The only way I can think of to fix this problem (while still using synchronous messages) is to spawn a new device driver thread each time an IRQ is sent to a device driver. That would have fairly high overhead though - it's probably better to use a callback or something (and make sure the IRQ handling code in device drivers is re-entrant) instead of using synchronous messages.
Of course this is only the beginning of the problem. For everything you do with synchronous messages you'll need to be careful of deadlocks; and you'll probably end up with a strict hierarchy of tasks, where tasks at the bottom can't send messages to tasks higher up without risking deadlock (and can only reply to messages from tasks higher up).
FlashBurn wrote:Another things is, what is faster for multi cpu systems, asynchronous or synchronous?
The advantage of synchronous messaging is that it's easier to write code that uses it; because the messaging behaves like an inter-process function call, and function calls are easy to use. The disadvantage of asynchronous messaging is that it's hard to write code that uses it; because the messaging behaves more like networking/sockets. Synchronous messaging can also be done with less overhead (no overhead caused by managing message queues).
However, for synchronous messaging; when you send a message your thread blocks and the other thread starts running, and when the other thread sends a reply back it blocks and your thread starts running again. This makes it hard to have more than one thread running at a time (it doesn't scale very well, and performance on multi-CPU will probably suck because of it). For asynchronous messaging; the sender and receiver can both be running on different CPUs and both might never block. Basically, asynchronous messaging scales easily on multi-CPU (and is even used for large clusters of computers because it scales so well); and as an added bonus it avoids all the deadlock hassles.
What this means is that for single-CPU (e.g. embedded systems and desktop machines from last century) synchronous messaging is a really good idea - you get the "easier to write code" advantage and scalability doesn't matter. For servers and modern desktop machines (and some embedded devices now, and for distributed systems) synchronous messaging is probably a bad idea, and it'll get progressively worse as "CPUs per computer" increases.
Cheers,
Brendan