Changeset d4ec49e in mainline for uspace/lib/c/include/task.h
- Timestamp:
- 2019-08-07T05:25:59Z (6 years ago)
- Children:
- 3ea98e8
- Parents:
- 55fe220
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-10-14 23:13:41)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 05:25:59)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/task.h
r55fe220 rd4ec49e 44 44 #define TASK_WAIT_EXIT 0x1 45 45 #define TASK_WAIT_RETVAL 0x2 46 #define TASK_WAIT_BOTH 0x4 46 47 47 48 typedef struct { … … 49 50 ipc_call_t result; 50 51 aid_t aid; 52 task_id_t tid; 51 53 } task_wait_t; 52 54 … … 54 56 { 55 57 wait->flags = flags; 58 } 59 60 static inline int task_wait_get(task_wait_t *wait) 61 { 62 return wait->flags; 56 63 } 57 64 … … 84 91 85 92 extern errno_t task_retval(int); 86 //TODO87 //extern int task_exit(int);88 93 89 94 #endif
Note:
See TracChangeset
for help on using the changeset viewer.