Changeset 012dd8e in mainline for uspace/lib/c/generic/private/taskman.h
- Timestamp:
- 2019-08-07T09:15:30Z (6 years ago)
- Children:
- e8747bd8
- Parents:
- 780c8ce
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-01 00:08:04)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:15:30)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/taskman.h
r780c8ce r012dd8e 1 1 /* 2 * Copyright (c) 201 1 Martin Decky2 * Copyright (c) 2015 Michal Koutny 3 3 * All rights reserved. 4 4 * … … 33 33 */ 34 34 35 #ifndef _LIBC_PRIVATE_NS_H_36 #define _LIBC_PRIVATE_NS_H_35 #ifndef LIBC_PRIVATE_TASKMAN_H_ 36 #define LIBC_PRIVATE_TASKMAN_H_ 37 37 38 38 #include <async.h> 39 39 40 extern async_sess_t *session_primary; 40 extern async_sess_t *session_taskman; 41 42 void __task_init(async_sess_t *); 43 44 async_exch_t *taskman_exchange_begin(void); 45 void taskman_exchange_end(async_exch_t *); 46 47 extern async_sess_t *taskman_connect(void); 48 extern async_sess_t *taskman_session_ns(void); 49 extern async_sess_t *taskman_session_loader(void); 41 50 42 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.