mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
* sysdeps/mach/hurd/ifreq.c: Add missing #includes.
This commit is contained in:
parent
8f480b4bc2
commit
8dea90aab0
@ -1,5 +1,7 @@
|
|||||||
2005-12-21 Roland McGrath <roland@redhat.com>
|
2005-12-21 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/mach/hurd/ifreq.c: Add missing #includes.
|
||||||
|
|
||||||
* elf/cache.c: Use <> rather than "" #includes.
|
* elf/cache.c: Use <> rather than "" #includes.
|
||||||
* elf/chroot_canon.c: Likewise.
|
* elf/chroot_canon.c: Likewise.
|
||||||
* elf/dl-lookup.c: Likewise.
|
* elf/dl-lookup.c: Likewise.
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
2005-12-21 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* libc-cancellation.c: Use <> rather than "" #includes.
|
||||||
|
* pt-cleanup.c: Likewise.
|
||||||
|
* pthread_create.c: Likewise.
|
||||||
|
* pthread_join.c: Likewise.
|
||||||
|
* pthread_timedjoin.c: Likewise.
|
||||||
|
* pthread_tryjoin.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/libc_pthread_init.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/register-atfork.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/unregister-atfork.c: Likewise.
|
||||||
|
* unwind.c: Likewise.
|
||||||
|
|
||||||
2005-12-19 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
2005-12-19 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||||
|
|
||||||
* sysdeps/sh/tcb-offsets.sym: Add POINTER_GUARD.
|
* sysdeps/sh/tcb-offsets.sym: Add POINTER_GUARD.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
#include "atomic.h"
|
#include <atomic.h>
|
||||||
#include <bits/libc-lock.h>
|
#include <bits/libc-lock.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
#include "jmpbuf-unwind.h"
|
#include <jmpbuf-unwind.h>
|
||||||
|
|
||||||
void
|
void
|
||||||
__pthread_cleanup_upto (__jmp_buf target, char *targetframe)
|
__pthread_cleanup_upto (__jmp_buf target, char *targetframe)
|
||||||
@ -61,4 +61,3 @@ __pthread_cleanup_upto (__jmp_buf target, char *targetframe)
|
|||||||
THREAD_SETMEM (self, cleanup, cbuf);
|
THREAD_SETMEM (self, cleanup, cbuf);
|
||||||
}
|
}
|
||||||
hidden_def (__pthread_cleanup_upto)
|
hidden_def (__pthread_cleanup_upto)
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ unsigned int __nptl_nthreads = 1;
|
|||||||
#include "allocatestack.c"
|
#include "allocatestack.c"
|
||||||
|
|
||||||
/* Code to create the thread. */
|
/* Code to create the thread. */
|
||||||
#include "createthread.c"
|
#include <createthread.c>
|
||||||
|
|
||||||
|
|
||||||
struct pthread *
|
struct pthread *
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "atomic.h"
|
#include <atomic.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "atomic.h"
|
#include <atomic.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "atomic.h"
|
#include <atomic.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <list.h>
|
#include <list.h>
|
||||||
#include "fork.h"
|
#include <fork.h>
|
||||||
#include <dl-sysdep.h>
|
#include <dl-sysdep.h>
|
||||||
#include <tls.h>
|
#include <tls.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -20,7 +20,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "fork.h"
|
#include <fork.h>
|
||||||
|
|
||||||
|
|
||||||
/* Lock to protect allocation and deallocation of fork handlers. */
|
/* Lock to protect allocation and deallocation of fork handlers. */
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 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@redhat.com>, 2002.
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "fork.h"
|
#include <fork.h>
|
||||||
#include <atomic.h>
|
#include <atomic.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004, 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@redhat.com>
|
Contributed by Ulrich Drepper <drepper@redhat.com>
|
||||||
and Richard Henderson <rth@redhat.com>, 2003.
|
and Richard Henderson <rth@redhat.com>, 2003.
|
||||||
@ -23,7 +23,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "pthreadP.h"
|
#include "pthreadP.h"
|
||||||
#include "jmpbuf-unwind.h"
|
#include <jmpbuf-unwind.h>
|
||||||
|
|
||||||
#ifdef HAVE_FORCED_UNWIND
|
#ifdef HAVE_FORCED_UNWIND
|
||||||
|
|
||||||
|
@ -17,6 +17,12 @@
|
|||||||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
02111-1307 USA. */
|
02111-1307 USA. */
|
||||||
|
|
||||||
|
#include <ifreq.h>
|
||||||
|
#include <hurd.h>
|
||||||
|
#include <hurd/pfinet.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
__ifreq (struct ifreq **ifreqs, int *num_ifs, int sockfd)
|
__ifreq (struct ifreq **ifreqs, int *num_ifs, int sockfd)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user