* elf/cache.c: Use <> rather than "" #includes.

* elf/chroot_canon.c: Likewise.
	* elf/dl-lookup.c: Likewise.
	* elf/ldconfig.c: Likewise.
	* elf/readlib.c: Likewise.
	* elf/rtld.c: Likewise.
	* gmon/mcount.c: Likewise.
	* hurd/hurdfault.c: Likewise.
	* hurd/hurdsig.c: Likewise.
	* hurd/report-wait.c: Likewise.
	* hurd/sigunwind.c: Likewise.
	* mach/setup-thread.c: Likewise.
	* rt/aio_read64.c: Likewise.
	* rt/aio_sigqueue.c: Likewise.
	* rt/aio_write64.c: Likewise.
	* soft-fp/soft-fp.h: Likewise.
	* stdio-common/tmpfile64.c: Likewise.
	* sysdeps/mach/hurd/fork.c: Likewise.
	* sysdeps/mach/hurd/hppa/trampoline.c: Likewise.
	* sysdeps/mach/hurd/i386/trampoline.c: Likewise.
	* sysdeps/mach/hurd/mips/trampoline.c: Likewise.
	* sysdeps/mach/hurd/powerpc/trampoline.c: Likewise.
	* sysdeps/posix/sprofil.c: Likewise.
	* sysdeps/pthread/aio_cancel.c: Likewise.
	* sysdeps/pthread/aio_fsync.c: Likewise.
	* sysdeps/pthread/aio_read64.c: Likewise.
	* sysdeps/pthread/aio_read.c: Likewise.
	* sysdeps/pthread/aio_suspend.c: Likewise.
	* sysdeps/pthread/aio_write64.c: Likewise.
	* sysdeps/pthread/aio_write.c: Likewise.
	* sysdeps/pthread/lio_listio64.c: Likewise.
	* sysdeps/pthread/lio_listio.c: Likewise.
	* sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
	* sysdeps/unix/sysv/tcflow.c: Likewise.
This commit is contained in:
Roland McGrath 2005-12-21 22:16:34 +00:00
parent e8ebf3f2dc
commit 8f480b4bc2
35 changed files with 113 additions and 70 deletions

View File

@ -1,5 +1,40 @@
2005-12-21 Roland McGrath <roland@redhat.com> 2005-12-21 Roland McGrath <roland@redhat.com>
* elf/cache.c: Use <> rather than "" #includes.
* elf/chroot_canon.c: Likewise.
* elf/dl-lookup.c: Likewise.
* elf/ldconfig.c: Likewise.
* elf/readlib.c: Likewise.
* elf/rtld.c: Likewise.
* gmon/mcount.c: Likewise.
* hurd/hurdfault.c: Likewise.
* hurd/hurdsig.c: Likewise.
* hurd/report-wait.c: Likewise.
* hurd/sigunwind.c: Likewise.
* mach/setup-thread.c: Likewise.
* rt/aio_read64.c: Likewise.
* rt/aio_sigqueue.c: Likewise.
* rt/aio_write64.c: Likewise.
* soft-fp/soft-fp.h: Likewise.
* stdio-common/tmpfile64.c: Likewise.
* sysdeps/mach/hurd/fork.c: Likewise.
* sysdeps/mach/hurd/hppa/trampoline.c: Likewise.
* sysdeps/mach/hurd/i386/trampoline.c: Likewise.
* sysdeps/mach/hurd/mips/trampoline.c: Likewise.
* sysdeps/mach/hurd/powerpc/trampoline.c: Likewise.
* sysdeps/posix/sprofil.c: Likewise.
* sysdeps/pthread/aio_cancel.c: Likewise.
* sysdeps/pthread/aio_fsync.c: Likewise.
* sysdeps/pthread/aio_read64.c: Likewise.
* sysdeps/pthread/aio_read.c: Likewise.
* sysdeps/pthread/aio_suspend.c: Likewise.
* sysdeps/pthread/aio_write64.c: Likewise.
* sysdeps/pthread/aio_write.c: Likewise.
* sysdeps/pthread/lio_listio64.c: Likewise.
* sysdeps/pthread/lio_listio.c: Likewise.
* sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
* sysdeps/unix/sysv/tcflow.c: Likewise.
* sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast. * sysdeps/generic/unwind-dw2.c (extract_cie_info): Add a cast.
* elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call. * elf/dl-error.c (_dl_signal_error): Use .__jmpbuf in __longjmp call.

View File

@ -30,8 +30,8 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/types.h> #include <sys/types.h>
#include "ldconfig.h" #include <ldconfig.h>
#include "dl-cache.h" #include <dl-cache.h>
struct cache_entry struct cache_entry
{ {

View File

@ -1,6 +1,6 @@
/* Return the canonical absolute name of a given file inside chroot. /* Return the canonical absolute name of a given file inside chroot.
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2004, 2005 Copyright (C) 1996,1997,1998,1999,2000,2001,2004,2005
Free Software Foundation, Inc. Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
@ -26,7 +26,7 @@
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include "ldconfig.h" #include <ldconfig.h>
#ifndef PATH_MAX #ifndef PATH_MAX
#define PATH_MAX 1024 #define PATH_MAX 1024

View File

@ -23,7 +23,7 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#include <ldsodefs.h> #include <ldsodefs.h>
#include "dl-hash.h" #include <dl-hash.h>
#include <dl-machine.h> #include <dl-machine.h>
#include <bits/libc-lock.h> #include <bits/libc-lock.h>
#include <tls.h> #include <tls.h>

View File

@ -37,10 +37,10 @@
#include <glob.h> #include <glob.h>
#include <libgen.h> #include <libgen.h>
#include "ldconfig.h" #include <ldconfig.h>
#include "dl-cache.h" #include <dl-cache.h>
#include "dl-procinfo.h" #include <dl-procinfo.h>
#ifdef _DL_FIRST_PLATFORM #ifdef _DL_FIRST_PLATFORM
# define _DL_FIRST_EXTRA (_DL_FIRST_PLATFORM + _DL_PLATFORMS_COUNT) # define _DL_FIRST_EXTRA (_DL_FIRST_PLATFORM + _DL_PLATFORMS_COUNT)

View File

@ -34,7 +34,7 @@
#include <sys/stat.h> #include <sys/stat.h>
#include <gnu/lib-names.h> #include <gnu/lib-names.h>
#include "ldconfig.h" #include <ldconfig.h>
#define Elf32_CLASS ELFCLASS32 #define Elf32_CLASS ELFCLASS32
#define Elf64_CLASS ELFCLASS64 #define Elf64_CLASS ELFCLASS64

View File

@ -34,7 +34,7 @@
#include <hp-timing.h> #include <hp-timing.h>
#include <bits/libc-lock.h> #include <bits/libc-lock.h>
#include "dynamic-link.h" #include "dynamic-link.h"
#include "dl-librecon.h" #include <dl-librecon.h>
#include <unsecvars.h> #include <unsecvars.h>
#include <dl-cache.h> #include <dl-cache.h>
#include <dl-osinfo.h> #include <dl-osinfo.h>

View File

@ -37,7 +37,7 @@ static char sccsid[] = "@(#)mcount.c 8.1 (Berkeley) 6/4/93";
/* This file provides the machine-dependent definitions of the _MCOUNT_DECL /* This file provides the machine-dependent definitions of the _MCOUNT_DECL
and MCOUNT macros. */ and MCOUNT macros. */
#include "machine-gmon.h" #include <machine-gmon.h>
#include <atomic.h> #include <atomic.h>

View File

@ -1,5 +1,6 @@
/* Handle faults in the signal thread. /* Handle faults in the signal thread.
Copyright (C) 1994,95,96,97,2002 Free Software Foundation, Inc. Copyright (C) 1994,1995,1996,1997,2002,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -24,7 +25,7 @@
#include <string.h> #include <string.h>
#include <setjmp.h> #include <setjmp.h>
#include <stdio.h> #include <stdio.h>
#include "thread_state.h" #include <thread_state.h>
#include "faultexc_server.h" /* mig-generated header for our exc server. */ #include "faultexc_server.h" /* mig-generated header for our exc server. */
#include <assert.h> #include <assert.h>

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,01,2002 /* Copyright (C) 1991,92,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2005
Free Software Foundation, Inc. Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
@ -132,7 +132,7 @@ _hurd_thread_sigstate (thread_t thread)
#include <setjmp.h> #include <setjmp.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/wait.h> #include <sys/wait.h>
#include "thread_state.h" #include <thread_state.h>
#include <hurd/msg_server.h> #include <hurd/msg_server.h>
#include <hurd/msg_reply.h> /* For __msg_sig_post_reply. */ #include <hurd/msg_reply.h> /* For __msg_sig_post_reply. */
#include <hurd/interrupt.h> #include <hurd/interrupt.h>
@ -256,7 +256,7 @@ interrupted_reply_port_location (struct machine_thread_all_state *thread_state,
} }
#include <hurd/sigpreempt.h> #include <hurd/sigpreempt.h>
#include "intr-msg.h" #include <intr-msg.h>
/* Timeout on interrupt_operation calls. */ /* Timeout on interrupt_operation calls. */
mach_msg_timeout_t _hurdsig_interrupt_timeout = 1000; mach_msg_timeout_t _hurdsig_interrupt_timeout = 1000;

View File

@ -1,5 +1,5 @@
/* Report on what a thread in our task is waiting for. /* Report on what a thread in our task is waiting for.
Copyright (C) 1996,97,99,2002 Free Software Foundation, Inc. Copyright (C) 1996,1997,1999,2002,2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -23,8 +23,8 @@
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>
#include <hurd/msg_server.h> #include <hurd/msg_server.h>
#include "thread_state.h" #include <thread_state.h>
#include "intr-msg.h" #include <intr-msg.h>
static char * static char *
describe_number (string_t description, const char *flavor, long int i) describe_number (string_t description, const char *flavor, long int i)

View File

@ -18,7 +18,7 @@
02111-1307 USA. */ 02111-1307 USA. */
#include <hurd.h> #include <hurd.h>
#include "thread_state.h" #include <thread_state.h>
#include <setjmp.h> #include <setjmp.h>
#include <assert.h> #include <assert.h>

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1991,94,95,97,2002 Free Software Foundation, Inc. /* Copyright (C) 1991,1994,1995,1997,2002,2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -17,10 +17,10 @@
02111-1307 USA. */ 02111-1307 USA. */
#include <mach.h> #include <mach.h>
#include "thread_state.h" #include <thread_state.h>
#include <string.h> #include <string.h>
#include <mach/machine/vm_param.h> #include <mach/machine/vm_param.h>
#include "sysdep.h" /* Defines stack direction. */ #include <sysdep.h" /* Defines stack direction. *>
#define STACK_SIZE (16 * 1024 * 1024) /* 16MB, arbitrary. */ #define STACK_SIZE (16 * 1024 * 1024) /* 16MB, arbitrary. */

View File

@ -1,2 +1,2 @@
#define BE_AIO64 #define BE_AIO64
#include "aio_read.c" #include <aio_read.c>

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997, 1999 Free Software Foundation, Inc. /* Copyright (C) 1997, 1999, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -20,7 +20,7 @@
#include <errno.h> #include <errno.h>
#include <signal.h> #include <signal.h>
#include "aio_misc.h" #include <aio_misc.h>
int int
__aio_sigqueue (sig, val, caller_pid) __aio_sigqueue (sig, val, caller_pid)

View File

@ -1,2 +1,2 @@
#define BE_AIO64 #define BE_AIO64
#include "aio_write.c" #include <aio_write.c>

View File

@ -1,5 +1,6 @@
/* Software floating-point emulation. /* Software floating-point emulation.
Copyright (C) 1997,1998,1999,2000,2002,2003 Free Software Foundation, Inc. Copyright (C) 1997,1998,1999,2000,2002,2003,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Richard Henderson (rth@cygnus.com), Contributed by Richard Henderson (rth@cygnus.com),
Jakub Jelinek (jj@ultra.linux.cz), Jakub Jelinek (jj@ultra.linux.cz),
@ -24,7 +25,7 @@
#ifndef SOFT_FP_H #ifndef SOFT_FP_H
#define SOFT_FP_H #define SOFT_FP_H
#include "sfp-machine.h" #include <sfp-machine.h>
/* Allow sfp-machine to have its own byte order definitions. */ /* Allow sfp-machine to have its own byte order definitions. */
#ifndef __BYTE_ORDER #ifndef __BYTE_ORDER

View File

@ -1,3 +1,3 @@
#define GEN_THIS __GT_BIGFILE #define GEN_THIS __GT_BIGFILE
#define tmpfile tmpfile64 #define tmpfile tmpfile64
#include "tmpfile.c" #include <tmpfile.c>

View File

@ -1,4 +1,5 @@
/* Copyright (C) 1994,95,96,97,99,2001,02, 04 Free Software Foundation, Inc. /* Copyright (C) 1994,1995,1996,1997,1999,2001,2002,2004,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -21,7 +22,7 @@
#include <hurd.h> #include <hurd.h>
#include <hurd/signal.h> #include <hurd/signal.h>
#include <setjmp.h> #include <setjmp.h>
#include "thread_state.h" #include <thread_state.h>
#include <sysdep.h> /* For stack growth direction. */ #include <sysdep.h> /* For stack growth direction. */
#include "set-hooks.h" #include "set-hooks.h"
#include <assert.h> #include <assert.h>

View File

@ -1,5 +1,5 @@
/* Set thread_state for sighandler, and sigcontext to recover. HPPA version. /* Set thread_state for sighandler, and sigcontext to recover. HPPA version.
Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc. Copyright (C) 1995, 1997, 1998, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -18,7 +18,7 @@
02111-1307 USA. */ 02111-1307 USA. */
#include <hurd/signal.h> #include <hurd/signal.h>
#include "thread_state.h" #include <thread_state.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include "hurdfault.h" #include "hurdfault.h"

View File

@ -1,5 +1,6 @@
/* Set thread_state for sighandler, and sigcontext to recover. i386 version. /* Set thread_state for sighandler, and sigcontext to recover. i386 version.
Copyright (C) 1994, 95, 96, 97, 98, 99 Free Software Foundation, Inc. Copyright (C) 1994,1995,1996,1997,1998,1999,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -19,11 +20,11 @@
#include <hurd/signal.h> #include <hurd/signal.h>
#include <hurd/userlink.h> #include <hurd/userlink.h>
#include "thread_state.h" #include <thread_state.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include "hurdfault.h" #include "hurdfault.h"
#include "intr-msg.h" #include <intr-msg.h>
struct sigcontext * struct sigcontext *

View File

@ -1,5 +1,5 @@
/* Set thread_state for sighandler, and sigcontext to recover. MIPS version. /* Set thread_state for sighandler, and sigcontext to recover. MIPS version.
Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. Copyright (C) 1996, 1997, 1998, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -19,11 +19,11 @@
#include <hurd/signal.h> #include <hurd/signal.h>
#include <hurd/userlink.h> #include <hurd/userlink.h>
#include "thread_state.h" #include <thread_state.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include "hurdfault.h" #include "hurdfault.h"
#include "intr-msg.h" #include <intr-msg.h>
struct sigcontext * struct sigcontext *

View File

@ -1,5 +1,6 @@
/* Set thread_state for sighandler, and sigcontext to recover. For PowerPC. /* Set thread_state for sighandler, and sigcontext to recover. For PowerPC.
Copyright (C) 1994,95,96,97,98,99,2001 Free Software Foundation, Inc. Copyright (C) 1994,1995,1996,1997,1998,1999,2001,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -19,11 +20,11 @@
#include <hurd/signal.h> #include <hurd/signal.h>
#include <hurd/userlink.h> #include <hurd/userlink.h>
#include "thread_state.h" #include <thread_state.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include "hurdfault.h" #include "hurdfault.h"
#include "intr-msg.h" #include <intr-msg.h>
struct sigcontext * struct sigcontext *
_hurd_setup_sighandler (struct hurd_sigstate *ss, __sighandler_t handler, _hurd_setup_sighandler (struct hurd_sigstate *ss, __sighandler_t handler,

View File

@ -181,14 +181,14 @@ profil_count_uint (void *pcp)
interrupted code. */ interrupted code. */
#define profil_counter profil_counter_ushort #define profil_counter profil_counter_ushort
#define profil_count(pc) profil_count (pc, 0) #define profil_count(pc) profil_count (pc, 0)
#include "profil-counter.h" #include <profil-counter.h>
#undef profil_counter #undef profil_counter
#undef profil_count #undef profil_count
#define profil_counter profil_counter_uint #define profil_counter profil_counter_uint
#define profil_count(pc) profil_count (pc, 1) #define profil_count(pc) profil_count (pc, 1)
#include "profil-counter.h" #include <profil-counter.h>
static int static int
insert (int i, unsigned long int start, unsigned long int end, struct prof *p, insert (int i, unsigned long int start, unsigned long int end, struct prof *p,

View File

@ -1,5 +1,5 @@
/* Cancel requests associated with given file descriptor. /* Cancel requests associated with given file descriptor.
Copyright (C) 1997, 1998, 2000, 2002 Free Software Foundation, Inc. Copyright (C) 1997, 1998, 2000, 2002, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -34,7 +34,7 @@
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,5 @@
/* Synchronize I/O in given file descriptor. /* Synchronize I/O in given file descriptor.
Copyright (C) 1997, 1999, 2002 Free Software Foundation, Inc. Copyright (C) 1997, 1999, 2002, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -30,7 +30,7 @@
#undef aio_fsync64 #undef aio_fsync64
#include <errno.h> #include <errno.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,5 @@
/* Asynchronous read. /* Asynchronous read.
Copyright (C) 1997, 1999 Free Software Foundation, Inc. Copyright (C) 1997, 1999, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -20,7 +20,7 @@
#include <aio.h> #include <aio.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,5 @@
/* Asynchronous read, 64bit offset version. /* Asynchronous read, 64bit offset version.
Copyright (C) 1997, 1999 Free Software Foundation, Inc. Copyright (C) 1997, 1999, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -20,7 +20,7 @@
#include <aio.h> #include <aio.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,6 @@
/* Suspend until termination of a requests. /* Suspend until termination of a requests.
Copyright (C) 1997,1998,1999,2000,2002,2003 Free Software Foundation, Inc. Copyright (C) 1997,1998,1999,2000,2002,2003,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -36,7 +37,7 @@
#include <sys/time.h> #include <sys/time.h>
#include <bits/libc-lock.h> #include <bits/libc-lock.h>
#include "aio_misc.h" #include <aio_misc.h>
struct clparam struct clparam

View File

@ -1,5 +1,5 @@
/* Asynchronous write. /* Asynchronous write.
Copyright (C) 1997, 1999 Free Software Foundation, Inc. Copyright (C) 1997, 1999, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -20,7 +20,7 @@
#include <aio.h> #include <aio.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,5 @@
/* Asynchronous write, 64bit offset version. /* Asynchronous write, 64bit offset version.
Copyright (C) 1997, 1999 Free Software Foundation, Inc. Copyright (C) 1997, 1999, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -20,7 +20,7 @@
#include <aio.h> #include <aio.h>
#include "aio_misc.h" #include <aio_misc.h>
int int

View File

@ -1,5 +1,6 @@
/* Enqueue and list of read or write requests. /* Enqueue and list of read or write requests.
Copyright (C) 1997,1998,1999,2000,2001,2003 Free Software Foundation, Inc. Copyright (C) 1997,1998,1999,2000,2001,2003,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -25,7 +26,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include "aio_misc.h" #include <aio_misc.h>
#define LIO_OPCODE_BASE 0 #define LIO_OPCODE_BASE 0
#endif #endif

View File

@ -1,5 +1,5 @@
/* Enqueue and list of read or write requests, 64bit offset version. /* Enqueue and list of read or write requests, 64bit offset version.
Copyright (C) 1997, 1998, 1999, 2003 Free Software Foundation, Inc. Copyright (C) 1997, 1998, 1999, 2003, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -24,7 +24,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include "aio_misc.h" #include <aio_misc.h>
#define lio_listio lio_listio64 #define lio_listio lio_listio64
#define aiocb aiocb64 #define aiocb aiocb64

View File

@ -1,4 +1,5 @@
/* Copyright (C) 1997, 1998, 1999, 2000, 2003, 2005 Free Software Foundation, Inc. /* Copyright (C) 1997,1998,1999,2000,2003,2005
Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -25,7 +26,7 @@
#include <sysdep.h> #include <sysdep.h>
#include <sys/syscall.h> #include <sys/syscall.h>
#include "aio_misc.h" #include <aio_misc.h>
#ifdef __NR_rt_sigqueueinfo #ifdef __NR_rt_sigqueueinfo

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1992, 1996, 1997 Free Software Foundation, Inc. /* Copyright (C) 1992, 1996, 1997, 2005 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -22,7 +22,7 @@
#include <unistd.h> #include <unistd.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include "sysv_termio.h" #include <sysv_termio.h>
/* Suspend or restart transmission on FD. */ /* Suspend or restart transmission on FD. */
int int