Changes in uspace/lib/c/generic/libc.c [9d58539:d54b303] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r9d58539 rd54b303 52 52 #include "private/io.h" 53 53 54 #ifdef FUTEX_UPGRADABLE 55 #include <rcu.h> 56 #endif 57 54 58 #ifdef CONFIG_RTLD 55 59 #include <rtld/rtld.h> 56 60 #endif 61 57 62 58 63 static bool env_setup = false; … … 62 67 /* Initialize user task run-time environment */ 63 68 __malloc_init(); 64 __async_init();65 69 66 70 fibril_t *fibril = fibril_setup(); … … 72 76 /* Save the PCB pointer */ 73 77 __pcb = (pcb_t *) pcb_ptr; 78 79 #ifdef FUTEX_UPGRADABLE 80 rcu_register_fibril(); 81 #endif 82 83 __async_init(); 74 84 75 85 /* The basic run-time environment is setup */
Note:
See TracChangeset
for help on using the changeset viewer.