Changeset 87b4baa in mainline for uspace/srv/ns/task.c
- Timestamp:
- 2010-12-17T20:16:46Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 424558a
- Parents:
- 463e734 (diff), bbc74af7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/ns/task.c
r463e734 r87b4baa 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.