PM: remove obsolete ALARM, PAUSE, TIMES calls

NetBSD libc implements these as wrappers around setitimer(2),
sigsuspend(2), and getrusage(2), respectively.

Change-Id: I0c5e725b3e1316bddd3a3ff7ef65d57d30afd10d
This commit is contained in:
David van Moolenbroek
2013-10-27 01:24:15 +02:00
committed by Lionel Sambuc
parent f30a16b159
commit 4d4e70daaa
20 changed files with 38 additions and 289 deletions

View File

@@ -24,8 +24,6 @@
#define GETUID 24
#define STIME 25
#define PTRACE 26
#define ALARM 27
#define PAUSE 29
#define UTIME 30
#define GETEPINFO 31
#define SETGROUPS 32
@@ -37,7 +35,6 @@
#define MKDIR 39
#define RMDIR 40
#define PIPE 42
#define TIMES 43
#define SYMLINK 45
#define SETGID 46
#define GETGID 47

View File

@@ -25,7 +25,6 @@
/* PM sleep states. */
#define PSTATE_NONE '-'
#define PSTATE_PAUSED 'P'
#define PSTATE_WAITING 'W'
#define PSTATE_SIGSUSP 'S'