diff options
author | Roland McGrath <roland@gnu.org> | 2004-08-11 18:51:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-08-11 18:51:13 +0000 |
commit | 3cabdafafa0cd42a86a63affd5d4fee2c10cfbf5 (patch) | |
tree | 9a9529bacbe91dc310c2ab8ea75758aec2a61be7 /sysdeps/pthread/aio_misc.c | |
parent | 304815c6b460729e7b62a857394c6a009bcff30e (diff) | |
download | glibc-3cabdafafa0cd42a86a63affd5d4fee2c10cfbf5.tar.gz glibc-3cabdafafa0cd42a86a63affd5d4fee2c10cfbf5.tar.xz glibc-3cabdafafa0cd42a86a63affd5d4fee2c10cfbf5.zip |
* sysdeps/pthread/aio_misc.c (handle_fildes_io): Remove noreturn
attribute. Return NULL instead of calling pthread_exit at the end.
Diffstat (limited to 'sysdeps/pthread/aio_misc.c')
-rw-r--r-- | sysdeps/pthread/aio_misc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/pthread/aio_misc.c b/sysdeps/pthread/aio_misc.c index 1da3ad2c73..5c9ccb46d0 100644 --- a/sysdeps/pthread/aio_misc.c +++ b/sysdeps/pthread/aio_misc.c @@ -1,5 +1,6 @@ /* Handle general operations. - Copyright (C) 1997,1998,1999,2000,2001,2003 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004 + Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -470,7 +471,6 @@ __aio_enqueue_request (aiocb_union *aiocbp, int operation) static void * -__attribute__ ((noreturn)) handle_fildes_io (void *arg) { pthread_t self = pthread_self (); @@ -676,7 +676,7 @@ handle_fildes_io (void *arg) } while (runp != NULL); - pthread_exit (NULL); + return NULL; } |