Changeset 58775d30 in mainline for uspace/lib/c/generic/libc.c
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r6069061 r58775d30 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.