summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2015-10-10 16:31:43 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-10-10 16:31:43 +0200
commit3fe29ca043a310aa6987f8c3432527d4634da451 (patch)
treea963cf4d6e0594d7c31f29747d3b156eb52c89af /hurd
parentee0976f7fc61f43a7140e100b36be1e05a965c67 (diff)
Make _hurd_raise_signal directly return the error
* hurd/hurd-raise.c (_hurd_raise_signal): Return error returned by __msg_sig_post.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurd-raise.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/hurd/hurd-raise.c b/hurd/hurd-raise.c
index 3ae6b57147..07c88102cd 100644
--- a/hurd/hurd-raise.c
+++ b/hurd/hurd-raise.c
@@ -48,7 +48,5 @@ _hurd_raise_signal (struct hurd_sigstate *ss,
already marked the signal as pending for the particular thread we
want. Generating the signal with an RPC might deliver it to some
other thread. */
- err = __msg_sig_post (_hurd_msgport, 0, 0, __mach_task_self ());
-
- return __hurd_fail(err);
+ return __msg_sig_post (_hurd_msgport, 0, 0, __mach_task_self ());
}