Changeset fdb9982c in mainline
- Timestamp:
- 2011-01-23T20:17:51Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 124c061
- Parents:
- 357b5f5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
r357b5f5 rfdb9982c 319 319 typedef struct { 320 320 sysarg_t args[IPC_CALL_LEN]; 321 /** Phone which made or last masqueraded this call. */ 321 322 phone_t *phone; 323 /** Last task to perform _ipc_call(). */ 324 struct task *task; 322 325 } ipc_data_t; 323 326 -
kernel/generic/src/ipc/ipc.c
r357b5f5 rfdb9982c 296 296 call->data.phone = phone; 297 297 } 298 call->data.task = TASK; 298 299 299 300 irq_spinlock_lock(&box->lock, true); -
uspace/lib/c/include/ipc/ipc.h
r357b5f5 rfdb9982c 47 47 sysarg_t args[IPC_CALL_LEN]; 48 48 sysarg_t in_phone_hash; 49 sysarg_t in_task_hash; 49 50 } ipc_call_t; 50 51
Note:
See TracChangeset
for help on using the changeset viewer.