diff options
author | spew <devnull@localhost> | 2018-07-01 18:48:12 -0400 |
---|---|---|
committer | spew <devnull@localhost> | 2018-07-01 18:48:12 -0400 |
commit | 91d03436276fd2239670fdea902c761f31ea7a72 (patch) | |
tree | 6f5b8f0d3826d2897e541bbb7bbf3d6b03c03a88 /sys/src/ape/lib/ap | |
parent | 9dc907361c8398c714fed81a65cd447803ae1a8d (diff) |
ape: an implemenation of getitimer setitimer
Diffstat (limited to 'sys/src/ape/lib/ap')
-rw-r--r-- | sys/src/ape/lib/ap/plan9/signal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/ape/lib/ap/plan9/signal.c b/sys/src/ape/lib/ap/plan9/signal.c index a662ee0c1..b9bfbb715 100644 --- a/sys/src/ape/lib/ap/plan9/signal.c +++ b/sys/src/ape/lib/ap/plan9/signal.c @@ -28,10 +28,11 @@ static struct { {"sys: trap: address error", SIGSEGV}, {"sys: trap: TLB", SIGSEGV}, {"sys: write on closed pipe", SIGPIPE}, - {"alarm", SIGALRM}, {"term", SIGTERM}, {"usr1", SIGUSR1}, {"usr2", SIGUSR2}, + {"virtual alarm", SIGVTALRM}, + {"profiling alarm", SIGPROF}, }; #define NSIGTAB ((sizeof sigtab)/(sizeof (sigtab[0]))) |