diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-12-12 21:06:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-12-12 21:06:37 +0000 |
commit | 410828e47a70317c39ef4ac1192d467a1cd0d48f (patch) | |
tree | ff5ff14855897039f0fef4e3f0d5f835266579f3 /linuxthreads | |
parent | 76761b63787f4122ec87f257ec038aba9e7ab236 (diff) | |
download | glibc-410828e47a70317c39ef4ac1192d467a1cd0d48f.tar.gz glibc-410828e47a70317c39ef4ac1192d467a1cd0d48f.tar.xz glibc-410828e47a70317c39ef4ac1192d467a1cd0d48f.zip |
Update.
2004-12-12 Ulrich Drepper <drepper@redhat.com> * elf/dl-load.c (_dl_map_object_from_fd): Fix computation of mapping start. It must take the actual pagesize into account, not the alignment in the file.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/ChangeLog | 4 | ||||
-rw-r--r-- | linuxthreads/internals.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 261b5db6a2..beaad8c6c5 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,7 @@ +2004-12-12 Ulrich Drepper <drepper@redhat.com> + + * internals.h: Include <stdbool.h> to match includes used in nptl. + 2004-12-01 Jakub Jelinek <jakub@redhat.coM. * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_CPUTIME, diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index b35a430c69..605021766c 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -21,6 +21,7 @@ #include <limits.h> #include <signal.h> +#include <stdbool.h> #include <unistd.h> #include <stackinfo.h> #include <sigcontextinfo.h> |