Changeset 96b02eb9 in mainline for uspace/srv/ns/task.c
- Timestamp:
- 2010-12-14T12:52:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b10dab
- Parents:
- 554debd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/task.c
r554debd r96b02eb9 45 45 #define P2I_HASH_TABLE_CHAINS 256 46 46 47 static int get_id_by_phone( ipcarg_t phone_hash, task_id_t *id);47 static int get_id_by_phone(sysarg_t phone_hash, task_id_t *id); 48 48 49 49 /* TODO: … … 124 124 typedef struct { 125 125 link_t link; 126 ipcarg_t phash; /**< Task ID. */126 sysarg_t phash; /**< Task ID. */ 127 127 task_id_t id; /**< Task ID. */ 128 128 } p2i_entry_t; … … 248 248 void wait_for_task(task_id_t id, ipc_call_t *call, ipc_callid_t callid) 249 249 { 250 ipcarg_t retval;250 sysarg_t retval; 251 251 task_exit_t texit; 252 252 … … 393 393 } 394 394 395 static int get_id_by_phone( ipcarg_t phone_hash, task_id_t *id)395 static int get_id_by_phone(sysarg_t phone_hash, task_id_t *id) 396 396 { 397 397 unsigned long keys[1];
Note:
See TracChangeset
for help on using the changeset viewer.