Changeset 5f62ef9 in mainline for generic/include
- Timestamp:
- 2006-03-14T23:47:04Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d99d8c8
- Parents:
- 1065603e
- Location:
- generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/ipc.h
r1065603e r5f62ef9 33 33 /* - the uspace may not be able to utilize full length */ 34 34 #define IPC_CALL_LEN 4 35 36 /** Maximum active async calls per thread */ 37 #define IPC_MAX_ASYNC_CALLS 4 35 38 36 39 /* Flags for calls */ -
generic/include/proc/task.h
r1065603e r5f62ef9 41 41 link_t tasks_link; /**< Link to other tasks within the system. */ 42 42 as_t *as; /**< Address space. */ 43 /* IPC stuff */ 43 44 answerbox_t answerbox; /**< Communication endpoint */ 44 45 phone_t phones[IPC_MAX_PHONES]; 46 atomic_t active_calls; /**< Active asynchronous messages */ 45 47 }; 46 48 -
generic/include/syscall/syscall.h
r1065603e r5f62ef9 34 34 SYS_IO, 35 35 SYS_MREMAP, 36 SYS_IPC_CALL_SYNC_FAST, 36 37 SYS_IPC_CALL_SYNC, 37 SYS_IPC_CALL_ SYNC_MEDIUM,38 SYS_IPC_CALL_ASYNC_FAST, 38 39 SYS_IPC_CALL_ASYNC, 39 40 SYS_IPC_ANSWER,
Note:
See TracChangeset
for help on using the changeset viewer.