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