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:
Ulrich Drepper 2002-12-20 19:14:55 +00:00
parent 505b474df4
commit 7e791f32c8
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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;