Use INTERNAL_SYSCALL.

This commit is contained in:
Andreas Schwab 2002-12-21 19:36:29 +00:00
parent c025bbf609
commit d68f861c07
2 changed files with 3 additions and 12 deletions

View File

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

View File

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