diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 10:25:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-31 10:25:10 +0000 |
commit | f7f7f8150a52fd01eeedf17fa241d9cc0cf36842 (patch) | |
tree | eef37117ca6e8108eb20b0c0411d2a5486386361 /sysdeps | |
parent | 245eab025f92980428a499e6d7f4845f6ceaadc8 (diff) | |
download | glibc-f7f7f8150a52fd01eeedf17fa241d9cc0cf36842.tar glibc-f7f7f8150a52fd01eeedf17fa241d9cc0cf36842.tar.gz glibc-f7f7f8150a52fd01eeedf17fa241d9cc0cf36842.tar.bz2 glibc-f7f7f8150a52fd01eeedf17fa241d9cc0cf36842.zip |
Update.
* include/time.h: Add libc_hidden_proto for __nanosleep.
* sysdeps/generic/nanosleep.c: Add libc_hidden_def for __nanosleep.
* sysdeps/mach/nanosleep.c: Likewise.
* sysdeps/unix/sysv/aix/nanosleep.c: Likewise.
* sysdeps/unix/sysv/linux/syscalls.list: Add __GI___nanosleep alias.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/nanosleep.c | 3 | ||||
-rw-r--r-- | sysdeps/mach/nanosleep.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/aix/nanosleep.c | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/syscalls.list | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/generic/nanosleep.c b/sysdeps/generic/nanosleep.c index 0ff7036c5c..7a2138b6f1 100644 --- a/sysdeps/generic/nanosleep.c +++ b/sysdeps/generic/nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -31,5 +31,6 @@ __libc_nanosleep (const struct timespec *requested_time, stub_warning (nanosleep) weak_alias (__libc_nanosleep, __nanosleep) +libc_hidden_def (__nanosleep) weak_alias (__libc_nanosleep, nanosleep) #include <stub-tag.h> diff --git a/sysdeps/mach/nanosleep.c b/sysdeps/mach/nanosleep.c index 8484a99001..e433adb8bc 100644 --- a/sysdeps/mach/nanosleep.c +++ b/sysdeps/mach/nanosleep.c @@ -50,4 +50,5 @@ __nanosleep (const struct timespec *requested_time, return 0; } +libc_hidden_def (__nanosleep) weak_alias (__nanosleep, nanosleep) diff --git a/sysdeps/unix/sysv/aix/nanosleep.c b/sysdeps/unix/sysv/aix/nanosleep.c index 3c6e5082e6..842275f77a 100644 --- a/sysdeps/unix/sysv/aix/nanosleep.c +++ b/sysdeps/unix/sysv/aix/nanosleep.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2000 Free Software Foundation, Inc. +/* Copyright (C) 2000, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -36,4 +36,5 @@ __libc_nanosleep (const struct timespec *req, struct timespec *rem) return _nsleep ((struct timestruc_t *) req, (struct timestruc_t *) rem); } strong_alias (__libc_nanosleep, __nanosleep) +libc_hidden_def (__nanosleep) strong_alias (__libc_nanosleep, nanosleep) diff --git a/sysdeps/unix/sysv/linux/syscalls.list b/sysdeps/unix/sysv/linux/syscalls.list index 738cad7b88..5e11be0ea0 100644 --- a/sysdeps/unix/sysv/linux/syscalls.list +++ b/sysdeps/unix/sysv/linux/syscalls.list @@ -37,7 +37,7 @@ mount EXTRA mount i:sssip __mount mount mremap EXTRA mremap b:aini __mremap mremap munlock - munlock i:ai munlock munlockall - munlockall i: munlockall -nanosleep - nanosleep Ci:pp __libc_nanosleep __nanosleep nanosleep +nanosleep - nanosleep Ci:pp __libc_nanosleep __nanosleep nanosleep _GI___nanosleep nfsservctl EXTRA nfsservctl i:ipp nfsservctl pause - pause Ci: __libc_pause pause personality init-first personality i:i __personality personality |