Rev 1185 | Rev 1227 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1185 | Rev 1187 | ||
|---|---|---|---|
| Line 50... | Line 50... | ||
| 50 | /* IPC stuff */ |
50 | /* IPC stuff */ |
| 51 | answerbox_t answerbox; /**< Communication endpoint */ |
51 | answerbox_t answerbox; /**< Communication endpoint */ |
| 52 | phone_t phones[IPC_MAX_PHONES]; |
52 | phone_t phones[IPC_MAX_PHONES]; |
| 53 | atomic_t active_calls; /**< Active asynchronous messages */ |
53 | atomic_t active_calls; /**< Active asynchronous messages */ |
| 54 | 54 | ||
| 55 | task_arch_t arch; |
55 | task_arch_t arch; /**< Architecture specific task data. */ |
| 56 | }; |
56 | }; |
| 57 | 57 | ||
| 58 | extern spinlock_t tasks_lock; |
58 | extern spinlock_t tasks_lock; |
| 59 | extern btree_t tasks_btree; |
59 | extern btree_t tasks_btree; |
| 60 | 60 | ||