Changeset 1be7bee in mainline for uspace/lib/c/generic/libc.c
- Timestamp:
- 2019-08-07T04:20:30Z (6 years ago)
- Children:
- 70d28e8
- Parents:
- fe86d9d
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-10-05 21:17:40)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 04:20:30)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
rfe86d9d r1be7bee 48 48 #include "private/libc.h" 49 49 #include "private/async.h" 50 #include "private/malloc.h"51 50 #include "private/io.h" 52 51 #include "private/fibril.h" 52 #include "private/malloc.h" 53 #include "private/ns.h" // TODO maybe better filename for session_primary 54 #include "private/task.h" 55 53 56 54 57 #ifdef CONFIG_RTLD … … 108 111 if (__pcb == NULL) { 109 112 __async_client_init(NULL); 113 __task_init(NULL); 110 114 } else { 111 115 __async_client_init(__pcb->session_primary); 116 __task_init(__pcb->session_taskman); 112 117 } 113 118 __async_ports_init();
Note:
See TracChangeset
for help on using the changeset viewer.