diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-04-01 00:52:40 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2003-04-01 00:52:40 +0000 |
commit | 2bf49a0121e7128f8bda0ecebe03d4b1c1594d1d (patch) | |
tree | afca44c63435eb081d1c9cad7e97b611f64127ab /linuxthreads | |
parent | 9f292c243906ca91fe0f79355035d00bccb0e7bc (diff) | |
download | glibc-2bf49a0121e7128f8bda0ecebe03d4b1c1594d1d.tar glibc-2bf49a0121e7128f8bda0ecebe03d4b1c1594d1d.tar.gz glibc-2bf49a0121e7128f8bda0ecebe03d4b1c1594d1d.tar.bz2 glibc-2bf49a0121e7128f8bda0ecebe03d4b1c1594d1d.zip |
* alloca_cutoff.c: Include internals.h. * sysdeps/pthread/errno-loc.c: Include linuxthreads/internals.h. * sysdeps/pthread/herrno-loc.c: Likewise. * sysdeps/pthread/res-state.c: Likewise.
2003-03-31 Alexandre Oliva <aoliva@redhat.com>
* alloca_cutoff.c: Include internals.h.
* sysdeps/pthread/errno-loc.c: Include linuxthreads/internals.h.
* sysdeps/pthread/herrno-loc.c: Likewise.
* sysdeps/pthread/res-state.c: Likewise.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 7 | ||||
-rw-r--r-- | linuxthreads/alloca_cutoff.c | 3 | ||||
-rw-r--r-- | linuxthreads/sysdeps/pthread/errno-loc.c | 3 | ||||
-rw-r--r-- | linuxthreads/sysdeps/pthread/herrno-loc.c | 3 | ||||
-rw-r--r-- | linuxthreads/sysdeps/pthread/res-state.c | 3 |
5 files changed, 15 insertions, 4 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index d56d9066d7..dbdb0d4e8b 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,10 @@ +2003-03-31 Alexandre Oliva <aoliva@redhat.com> + + * alloca_cutoff.c: Include internals.h. + * sysdeps/pthread/errno-loc.c: Include linuxthreads/internals.h. + * sysdeps/pthread/herrno-loc.c: Likewise. + * sysdeps/pthread/res-state.c: Likewise. + 2003-03-25 Ulrich Drepper <drepper@redhat.com> * sysdeps/pthread/bits/typesizes.h: New file. diff --git a/linuxthreads/alloca_cutoff.c b/linuxthreads/alloca_cutoff.c index ac5ec3a194..ca064b3bb6 100644 --- a/linuxthreads/alloca_cutoff.c +++ b/linuxthreads/alloca_cutoff.c @@ -1,5 +1,5 @@ /* Determine whether block of given size can be allocated on the stack or not. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,6 +20,7 @@ #include <alloca.h> #include <stdlib.h> #include <sys/param.h> +#include "internals.h" #include <sysdep-cancel.h> int diff --git a/linuxthreads/sysdeps/pthread/errno-loc.c b/linuxthreads/sysdeps/pthread/errno-loc.c index 86dca2829e..d3e49b7211 100644 --- a/linuxthreads/sysdeps/pthread/errno-loc.c +++ b/linuxthreads/sysdeps/pthread/errno-loc.c @@ -1,6 +1,6 @@ /* MT support function to get address of `errno' variable, linuxthreads version. - Copyright (C) 1996, 1998, 2002 Free Software Foundation, Inc. + Copyright (C) 1996, 1998, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,6 +20,7 @@ #include <errno.h> #include <tls.h> +#include <linuxthreads/internals.h> #include <sysdep-cancel.h> #if ! USE___THREAD diff --git a/linuxthreads/sysdeps/pthread/herrno-loc.c b/linuxthreads/sysdeps/pthread/herrno-loc.c index 24712c706d..fbc5576166 100644 --- a/linuxthreads/sysdeps/pthread/herrno-loc.c +++ b/linuxthreads/sysdeps/pthread/herrno-loc.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 97, 98, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1996, 97, 98, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,7 @@ #include <netdb.h> #include <tls.h> +#include <linuxthreads/internals.h> #include <sysdep-cancel.h> #if ! USE___THREAD diff --git a/linuxthreads/sysdeps/pthread/res-state.c b/linuxthreads/sysdeps/pthread/res-state.c index afa48b89ff..823101819d 100644 --- a/linuxthreads/sysdeps/pthread/res-state.c +++ b/linuxthreads/sysdeps/pthread/res-state.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 97, 98, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1996, 97, 98, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,7 @@ #include <resolv.h> #include <tls.h> +#include <linuxthreads/internals.h> #include <sysdep-cancel.h> #if ! USE___THREAD |