diff options
Diffstat (limited to 'sim/common/callback.c')
-rw-r--r-- | sim/common/callback.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sim/common/callback.c b/sim/common/callback.c index 06d76b4..c0ace6e 100644 --- a/sim/common/callback.c +++ b/sim/common/callback.c @@ -570,6 +570,16 @@ os_getpid (host_callback *p) } static int +os_kill (host_callback *p, int pid, int signum) +{ + int result; + + result = kill (pid, signum); + p->last_errno = errno; + return result; +} + +static int os_pipe (host_callback *p, int *filedes) { int i; @@ -752,6 +762,7 @@ host_callback default_callback = os_truncate, os_getpid, + os_kill, os_pipe, os_pipe_empty, |