mirror of git://sourceware.org/git/glibc.git
Update.
2002-12-20 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Use INTERNAL_SYSCALL instead of INLINE_SYSCALL.
This commit is contained in:
parent
505b474df4
commit
7e791f32c8
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue