diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 23:34:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 23:34:27 +0000 |
commit | 38447cbe4e9672c643e598f81cad15f7004d52ed (patch) | |
tree | 242cf9ca409957dabdc6baef1948ddbb63af25cc | |
parent | 140ec5106ecd6f62fef1534a655146973ea18966 (diff) | |
download | glibc-38447cbe4e9672c643e598f81cad15f7004d52ed.tar.gz glibc-38447cbe4e9672c643e598f81cad15f7004d52ed.tar.xz glibc-38447cbe4e9672c643e598f81cad15f7004d52ed.zip |
Update.
* conform/data/pthread.h-data: Correct return type of pthread_exit.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | conform/data/pthread.h-data | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 0967fd7c64..0eb0136828 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-01-28 Ulrich Drepper <drepper@redhat.com> + * conform/data/pthread.h-data: Correct return type of pthread_exit. + * conform/conformtest.pl: Add -fno-builtin to CFLAGS. * conform/data/stdlib.h-data: Add _Exit. diff --git a/conform/data/pthread.h-data b/conform/data/pthread.h-data index ef758eb7c5..b37b4cde64 100644 --- a/conform/data/pthread.h-data +++ b/conform/data/pthread.h-data @@ -89,7 +89,7 @@ function int pthread_condattr_setpshared (pthread_condattr_t*, int) function int pthread_create (pthread_t*, const pthread_attr_t*, void *(*) (void*), void*) function int pthread_detach (pthread_t) function int pthread_equal (pthread_t, pthread_t) -function int pthread_exit (void*) +function void pthread_exit (void*) # ifndef POSIX function int pthread_getconcurrency (void) # endif |