diff options
author | Roland McGrath <roland@gnu.org> | 1998-11-30 18:45:57 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-11-30 18:45:57 +0000 |
commit | 42ee0538b865930125f863bd3572731cd6910ca8 (patch) | |
tree | a8006b5f4495908ccf7719f794d39aac8e533091 /mach | |
parent | 6747b8fcbf4e400445dec365beea46e3658ec65d (diff) | |
download | glibc-42ee0538b865930125f863bd3572731cd6910ca8.zip glibc-42ee0538b865930125f863bd3572731cd6910ca8.tar.gz glibc-42ee0538b865930125f863bd3572731cd6910ca8.tar.bz2 |
1998-11-30 Mark Kettenis <kettenis@phys.uva.nl>
* mach/Versions [libc, GLIBC_2.0]: Add __spin_lock,
__spin_lock_init, __mutex_lock, __mutex_trylock,
__mutex_unlock.
Remove get_priviliged_ports. Moved to hurd/Versions.
* hurd/Versions [libc, GLIBC_2.0]: Add _end. This makes the Hurd
brk implementation see the end of the data segment of the program
instead of the shared library.
Add __hurd_errno_location. This inline function is used in user
programs.
Add _hurd_critical_section_lock, _hurd_critical_section_unlock,
_hurd_fd_get, _hurd_port_free, _hurd_port_get,
_hurd_port_locked_get. These inline functions are used by macros
used in mail.local in the Hurd distribution.
Add get_privileged_ports. Moved here from mach/Versions.
Remove __hurd_file_name_lookup, __hurd_file_name_lookup_retry,
__hurd_file_name_split, __hurd_file_name_path_lookup. These are
not used outside libc.
1998-11-30 Mark Kettenis <kettenis@phys.uva.nl>
* hurd/hurdstartup.c: Really include set-hooks.h with <> instead
of "".
Diffstat (limited to 'mach')
-rw-r--r-- | mach/Versions | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/mach/Versions b/mach/Versions index 34dfabe..23fe6d7 100644 --- a/mach/Versions +++ b/mach/Versions @@ -4,12 +4,12 @@ libc { __mach_task_self_; __vm_page_size; - # functions used in inline functions - __mach_thread_self; - __mutex_lock_solid; __mutex_unlock_solid; - __spin_lock_solid; __spin_try_lock; __spin_unlock; - __mutex_init; - __mach_port_deallocate; + # functions used in inline functions and macros + __mach_port_deallocate; __mach_thread_self; + __mutex_init; __mutex_lock; __mutex_lock_solid; __mutex_trylock; + __mutex_unlock; __mutex_unlock_solid; + __spin_lock; __spin_lock_init; __spin_lock_solid; __spin_try_lock; + __spin_unlock; # functions used by RPC stubs __mach_msg; @@ -24,9 +24,6 @@ libc { # e* evc_wait; - # g* - get_privileged_ports; - # m* mach_error; mach_error_string; mach_error_type; mach_host_self; |