diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-20 19:14:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-20 19:14:55 +0000 |
commit | 7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9 (patch) | |
tree | f08befcc53724417607ab58dcd1cc3538f5c6d4f | |
parent | 505b474df41fe05012a2e6bac671f002e83419b5 (diff) | |
download | glibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.tar.gz glibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.tar.xz glibc-7e791f32c88ea7f6800c6e58cc96b0fab09aa9a9.zip |
Update.
2002-12-20 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Use INTERNAL_SYSCALL instead of INLINE_SYSCALL.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/brk.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 73296e0891..b857746f46 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-12-20 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Use INTERNAL_SYSCALL + instead of INLINE_SYSCALL. + 2002-12-20 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Fix diff --git a/sysdeps/unix/sysv/linux/i386/brk.c b/sysdeps/unix/sysv/linux/i386/brk.c index d99e7256d4..9219e1a48f 100644 --- a/sysdeps/unix/sysv/linux/i386/brk.c +++ b/sysdeps/unix/sysv/linux/i386/brk.c @@ -36,7 +36,7 @@ __brk (void *addr) { void *__unbounded newbrk; - newbrk = INLINE_SYSCALL (brk, 1, __ptrvalue (addr)); + newbrk = INTERNAL_SYSCALL (brk, 1, __ptrvalue (addr)); __curbrk = newbrk; |