diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-16 01:40:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-16 01:40:12 +0000 |
commit | 3a41e72395a5715f78e8ee2127783ef44f471003 (patch) | |
tree | d14a7f7bdd5c1790a71b8b7726ac00ab2e206df2 | |
parent | 5763742fc789ef23864c0b093a2a5e434e65f392 (diff) | |
download | glibc-3a41e72395a5715f78e8ee2127783ef44f471003.tar.gz glibc-3a41e72395a5715f78e8ee2127783ef44f471003.tar.xz glibc-3a41e72395a5715f78e8ee2127783ef44f471003.zip |
Update.
* sysdeps/unix/sysv/linux/powerpc/Dist: Add oldgetrlimit64.c. * sysdeps/unix/sysv/linux/powerpc/Makefile [$(subdir)=resource] (sysdep_routines): Add oldgetrlimit64. * sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c: New file. Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/Dist | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/Makefile | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c | 1 |
4 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index efbe1ca596..46154a0bcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2000-08-15 Ulrich Drepper <drepper@redhat.com> + * sysdeps/unix/sysv/linux/powerpc/Dist: Add oldgetrlimit64.c. + * sysdeps/unix/sysv/linux/powerpc/Makefile [$(subdir)=resource] + (sysdep_routines): Add oldgetrlimit64. + * sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c: New file. + Patch by Franz Sirl <Franz.Sirl-kernel@lauterbach.com>. + * include/link.h: Undo last patches. Hurd now had stat64. * elf/Makefile: Likewise. * elf/dl-load.c: Likewise. diff --git a/sysdeps/unix/sysv/linux/powerpc/Dist b/sysdeps/unix/sysv/linux/powerpc/Dist index b83332d994..5b221bd91c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/Dist +++ b/sysdeps/unix/sysv/linux/powerpc/Dist @@ -1,5 +1,6 @@ clone.S kernel_stat.h kernel_termios.h +oldgetrlimit64.c sys/procfs.h sys/user.h diff --git a/sysdeps/unix/sysv/linux/powerpc/Makefile b/sysdeps/unix/sysv/linux/powerpc/Makefile index 9d02acecc4..931611f4db 100644 --- a/sysdeps/unix/sysv/linux/powerpc/Makefile +++ b/sysdeps/unix/sysv/linux/powerpc/Makefile @@ -2,3 +2,7 @@ ifeq ($(subdir),signal) sysdep_routines += rt_sigsuspend rt_sigprocmask rt_sigtimedwait \ rt_sigqueueinfo rt_sigaction rt_sigpending endif + +ifeq ($(subdir),resource) +sysdep_routines += oldgetrlimit64 +endif diff --git a/sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c b/sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c new file mode 100644 index 0000000000..4c27e957bf --- /dev/null +++ b/sysdeps/unix/sysv/linux/powerpc/oldgetrlimit64.c @@ -0,0 +1 @@ +#include <sysdeps/unix/sysv/linux/i386/oldgetrlimit64.c> |