diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-07-22 23:56:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-07-22 23:56:53 +0000 |
commit | 9d79e0377b08773ec4f7ec38479b1563606f7ef7 (patch) | |
tree | 31dbc1c0fdb8abb00c75da24a048028225b32c21 /nptl/sysdeps/pthread/createthread.c | |
parent | 0e9d624072fd24ee7d113bcf9325e8fb21d2cf60 (diff) | |
download | glibc-9d79e0377b08773ec4f7ec38479b1563606f7ef7.tar.gz glibc-9d79e0377b08773ec4f7ec38479b1563606f7ef7.tar.xz glibc-9d79e0377b08773ec4f7ec38479b1563606f7ef7.zip |
Update.
* include/stdio.h (__libc_fatal): Add libc_hidden_proto. * include/dlfcn.h (__libc_dlopen_mode, __libc_dlsym, __libc_dlclose): Likewise. * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym, __libc_dlclose): Add libc_hidden_def. * sysdeps/generic/libc_fatal.c (__libc_fatal): Likewise. * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise. * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_fatal): Likewise. * elf/Versions (libc): Export __libc_dlopen_mode@@GLIBC_PRIVATE, __libc_dlsym@@GLIBC_PRIVATE and __libc_dlclose@@GLIBC_PRIVATE. * libio/Versions (libc): Export __libc_fatal@@GLIBC_PRIVATE. * sysdeps/generic/unwind-dw2.c: Readd #ifs removed during last change. * sysdeps/generic/unwind.inc: Removed.
Diffstat (limited to 'nptl/sysdeps/pthread/createthread.c')
-rw-r--r-- | nptl/sysdeps/pthread/createthread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/sysdeps/pthread/createthread.c b/nptl/sysdeps/pthread/createthread.c index 6e8f5cda90..5aa0d89f90 100644 --- a/nptl/sysdeps/pthread/createthread.c +++ b/nptl/sysdeps/pthread/createthread.c @@ -48,8 +48,8 @@ int *__libc_multiple_threads_ptr attribute_hidden; static int -do_clone (struct pthread *pd, struct pthread_attr *attr, int clone_flags, - int (*fct) (void *), STACK_VARIABLES_PARMS) +do_clone (struct pthread *pd, const struct pthread_attr *attr, + int clone_flags, int (*fct) (void *), STACK_VARIABLES_PARMS) { #ifdef PREPARE_CREATE PREPARE_CREATE; @@ -121,7 +121,7 @@ do_clone (struct pthread *pd, struct pthread_attr *attr, int clone_flags, static int -create_thread (struct pthread *pd, struct pthread_attr *attr, +create_thread (struct pthread *pd, const struct pthread_attr *attr, STACK_VARIABLES_PARMS) { #ifdef TLS_TCB_AT_TP |