mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-28 15:51:07 +00:00
Use INTERNAL_SYSCALL.
This commit is contained in:
parent
c025bbf609
commit
d68f861c07
@ -33,16 +33,7 @@ __brk (void *addr)
|
||||
{
|
||||
void *newbrk;
|
||||
|
||||
{
|
||||
register long d0 __asm__ ("%d0");
|
||||
|
||||
asm ("move%.l %2, %%d1\n"
|
||||
"trap #0" /* Perform the system call. */
|
||||
: "=d" (d0)
|
||||
: "0" (SYS_ify (brk)), "g" (addr)
|
||||
: "%d1");
|
||||
newbrk = (void *) d0;
|
||||
}
|
||||
newbrk = INTERNAL_SYSCALL (brk, 1, addr);
|
||||
__curbrk = newbrk;
|
||||
|
||||
if (newbrk < addr)
|
||||
|
@ -37,9 +37,9 @@ __getpagesize ()
|
||||
return GL(dl_pagesize);
|
||||
|
||||
#ifdef __NR_getpagesize
|
||||
result = INLINE_SYSCALL (getpagesize, 0);
|
||||
result = INTERNAL_SYSCALL (getpagesize, 0);
|
||||
/* The only possible error is ENOSYS. */
|
||||
if (result != -1)
|
||||
if (!INTERNAL_SYSCALL_ERROR_P (result))
|
||||
return result;
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user