From 6d8000d3c6e1026415f8398f540f5f3783622538 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 10 Oct 2024 17:09:24 -0400 Subject: abstract missing SYS_pause syscall with macros newer archs lack the syscall. the pause() function accounted for this with its own #ifdef, but that didn't allow use of the syscall directly elsewhere, so move the logic to macros in src/internal/syscall.h where it can be shared. --- src/unistd/pause.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/unistd') diff --git a/src/unistd/pause.c b/src/unistd/pause.c index 90bbf4ca..90cc8db5 100644 --- a/src/unistd/pause.c +++ b/src/unistd/pause.c @@ -3,9 +3,5 @@ int pause(void) { -#ifdef SYS_pause - return syscall_cp(SYS_pause); -#else - return syscall_cp(SYS_ppoll, 0, 0, 0, 0); -#endif + return sys_pause_cp(); } -- cgit v1.2.1