blob: f26dbe6649ccb766df449ea0102bc242feb80a81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* vi: set sw=4 ts=4: */
/*
* pause() for uClibc
*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include "syscalls.h"
#include <unistd.h>
#ifdef __NR_pause
#define __NR___libc_pause __NR_pause
_syscall0(int, __libc_pause);
#else
#include <signal.h>
libc_hidden_proto(__sigpause)
libc_hidden_proto(sigblock)
int __libc_pause(void)
{
return (__sigpause(sigblock(0), 0));
}
#endif
strong_alias(__libc_pause,pause)
|