* sysdeps/unix/sysv/linux/aio_misc.h: Various cleanups.
authorUlrich Drepper <drepper@redhat.com>
Thu, 2 Mar 2006 17:35:44 +0000 (17:35 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 2 Mar 2006 17:35:44 +0000 (17:35 +0000)
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/aio_misc.h

index f5c5299..bd86fad 100644 (file)
@@ -1,3 +1,7 @@
+2006-03-02  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/aio_misc.h: Various cleanups.
+
 2006-03-01  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S
index 50064c4..406d96e 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004 Free Software Foundation, Inc.
+/* Copyright (C) 2004, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Jakub Jelinek <jakub@redhat.com>, 2004.
 
 
 #ifndef _AIO_MISC_H
 # include_next <aio_misc.h>
+# include <limits.h>
+# include <pthread.h>
 # include <signal.h>
 # include <sysdep.h>
-# include <pthread.h>
-# include <limits.h>
 
 # define aio_start_notify_thread __aio_start_notify_thread
 # define aio_create_helper_thread __aio_create_helper_thread
@@ -37,7 +37,8 @@ __aio_start_notify_thread (void)
 }
 
 extern inline int
-__aio_create_helper_thread (pthread_t *threadp, void *(*tf) (void *), void *arg)
+__aio_create_helper_thread (pthread_t *threadp, void *(*tf) (void *),
+                           void *arg)
 {
   pthread_attr_t attr;
 
@@ -64,5 +65,5 @@ __aio_create_helper_thread (pthread_t *threadp, void *(*tf) (void *), void *arg)
 
   (void) pthread_attr_destroy (&attr);
   return ret;
-}                                                                                 
+}
 #endif