Changeset 4667b5c in mainline for uspace/srv/taskman/task.h
- Timestamp:
- 2019-08-07T11:10:46Z (6 years ago)
- Children:
- bb57a00
- Parents:
- 130ba46
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-13 01:56:10)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 11:10:46)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/taskman/task.h
r130ba46 r4667b5c 63 63 } task_t; 64 64 65 extern hash_table_t task_hash_table; 65 typedef bool (* task_walker_t)(task_t *, void *); 66 66 67 extern fibril_rwlock_t task_hash_table_lock; 67 68 68 extern int task _init(void);69 extern int tasks_init(void); 69 70 70 71 extern task_t *task_get_by_id(task_id_t); 72 73 extern void task_foreach(task_walker_t, void *); 74 75 extern void task_remove(task_t **); 71 76 72 77 extern int task_intro(task_id_t);
Note:
See TracChangeset
for help on using the changeset viewer.