Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Side by Side Diff: elf/Versions

Issue 12382030: Provide mprotect syscall (Closed) Base URL: http://git.chromium.org/native_client/nacl-glibc.git@master
Patch Set: Addressed CR comments Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sysdeps/nacl/irt.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 __nacl_irt_exit; 86 __nacl_irt_exit;
87 __nacl_irt_mkdir; 87 __nacl_irt_mkdir;
88 __nacl_irt_rmdir; 88 __nacl_irt_rmdir;
89 __nacl_irt_chdir; 89 __nacl_irt_chdir;
90 __nacl_irt_getcwd; 90 __nacl_irt_getcwd;
91 __nacl_irt_fstat; 91 __nacl_irt_fstat;
92 __nacl_irt_getdents; 92 __nacl_irt_getdents;
93 __nacl_irt_gettod; 93 __nacl_irt_gettod;
94 __nacl_irt_mmap; 94 __nacl_irt_mmap;
95 __nacl_irt_munmap; 95 __nacl_irt_munmap;
96 __nacl_irt_mprotect;
96 __nacl_irt_mutex_create; 97 __nacl_irt_mutex_create;
97 __nacl_irt_mutex_destroy; 98 __nacl_irt_mutex_destroy;
98 __nacl_irt_mutex_lock; 99 __nacl_irt_mutex_lock;
99 __nacl_irt_mutex_trylock; 100 __nacl_irt_mutex_trylock;
100 __nacl_irt_mutex_unlock; 101 __nacl_irt_mutex_unlock;
101 __nacl_irt_nanosleep; 102 __nacl_irt_nanosleep;
102 __nacl_irt_open; 103 __nacl_irt_open;
103 __nacl_irt_open_resource; 104 __nacl_irt_open_resource;
104 __nacl_irt_read; 105 __nacl_irt_read;
105 __nacl_irt_write; 106 __nacl_irt_write;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 _dl_allocate_tls; _dl_deallocate_tls; 149 _dl_allocate_tls; _dl_deallocate_tls;
149 _dl_get_tls_static_info; _dl_allocate_tls_init; 150 _dl_get_tls_static_info; _dl_allocate_tls_init;
150 _dl_tls_setup; _dl_rtld_di_serinfo; 151 _dl_tls_setup; _dl_rtld_di_serinfo;
151 _dl_make_stack_executable; 152 _dl_make_stack_executable;
152 # Only here for gdb while a better method is developed. 153 # Only here for gdb while a better method is developed.
153 _dl_debug_state; 154 _dl_debug_state;
154 # Pointer protection. 155 # Pointer protection.
155 __pointer_chk_guard; 156 __pointer_chk_guard;
156 } 157 }
157 } 158 }
OLDNEW
« no previous file with comments | « no previous file | sysdeps/nacl/irt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698