mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Use INTERNAL_SYSCALL.
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user