Rev 2482 | Rev 2522 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2482 | Rev 2490 | ||
|---|---|---|---|
| Line 49... | Line 49... | ||
| 49 | #include <futex.h> |
49 | #include <futex.h> |
| 50 | #include <kernel/synch/synch.h> |
50 | #include <kernel/synch/synch.h> |
| 51 | #include <async.h> |
51 | #include <async.h> |
| 52 | #include <fibril.h> |
52 | #include <fibril.h> |
| 53 | 53 | ||
| - | 54 | /** |
|
| 54 | /** Structure used for keeping track of sent asynchronous calls and queing |
55 | * Structures of this type are used for keeping track of sent asynchronous calls |
| 55 | * unsent calls. |
56 | * and queing unsent calls. |
| 56 | */ |
57 | */ |
| 57 | typedef struct { |
58 | typedef struct { |
| 58 | link_t list; |
59 | link_t list; |
| 59 | 60 | ||
| 60 | ipc_async_callback_t callback; |
61 | ipc_async_callback_t callback; |