OLD | NEW |
1 libc { | 1 libc { |
2 GLIBC_2.0 { | 2 GLIBC_2.0 { |
3 %ifdef EXPORT_UNWIND_FIND_FDE | 3 %ifdef EXPORT_UNWIND_FIND_FDE |
4 __register_frame_info; __deregister_frame_info; | 4 __register_frame_info; __deregister_frame_info; |
5 %endif | 5 %endif |
6 } | 6 } |
7 GLIBC_2.1 { | 7 GLIBC_2.1 { |
8 # functions used in other libraries | 8 # functions used in other libraries |
9 _dl_mcount_wrapper; _dl_mcount_wrapper_check; | 9 _dl_mcount_wrapper; _dl_mcount_wrapper_check; |
10 } | 10 } |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 nacl_interface_query; | 62 nacl_interface_query; |
63 } | 63 } |
64 GLIBC_PRIVATE { | 64 GLIBC_PRIVATE { |
65 # Futex emulation: used by libc and NPTL. | 65 # Futex emulation: used by libc and NPTL. |
66 __nacl_futex_wait; | 66 __nacl_futex_wait; |
67 __nacl_futex_wake; | 67 __nacl_futex_wake; |
68 __nacl_futex_wake_op; | 68 __nacl_futex_wake_op; |
69 __nacl_futex_cmp_requeue; | 69 __nacl_futex_cmp_requeue; |
70 # Syscall table: can be used to intercept syscalls. | 70 # Syscall table: can be used to intercept syscalls. |
71 __nacl_irt_clock; | 71 __nacl_irt_clock; |
| 72 __nacl_irt_clock_getres; |
| 73 __nacl_irt_clock_gettime; |
72 __nacl_irt_close; | 74 __nacl_irt_close; |
73 __nacl_irt_cond_broadcast; | 75 __nacl_irt_cond_broadcast; |
74 __nacl_irt_cond_create; | 76 __nacl_irt_cond_create; |
75 __nacl_irt_cond_destroy; | 77 __nacl_irt_cond_destroy; |
76 __nacl_irt_cond_signal; | 78 __nacl_irt_cond_signal; |
77 __nacl_irt_cond_timed_wait_abs; | 79 __nacl_irt_cond_timed_wait_abs; |
78 __nacl_irt_cond_wait; | 80 __nacl_irt_cond_wait; |
79 __nacl_irt_dup2; | 81 __nacl_irt_dup2; |
80 __nacl_irt_dup; | 82 __nacl_irt_dup; |
81 __nacl_irt_dyncode_create; | 83 __nacl_irt_dyncode_create; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 _dl_allocate_tls; _dl_deallocate_tls; | 118 _dl_allocate_tls; _dl_deallocate_tls; |
117 _dl_get_tls_static_info; _dl_allocate_tls_init; | 119 _dl_get_tls_static_info; _dl_allocate_tls_init; |
118 _dl_tls_setup; _dl_rtld_di_serinfo; | 120 _dl_tls_setup; _dl_rtld_di_serinfo; |
119 _dl_make_stack_executable; | 121 _dl_make_stack_executable; |
120 # Only here for gdb while a better method is developed. | 122 # Only here for gdb while a better method is developed. |
121 _dl_debug_state; | 123 _dl_debug_state; |
122 # Pointer protection. | 124 # Pointer protection. |
123 __pointer_chk_guard; | 125 __pointer_chk_guard; |
124 } | 126 } |
125 } | 127 } |
OLD | NEW |