summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2015-02-07 22:39:38 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2015-02-07 22:41:23 +0100
commitf96ec27aa9f8fe871973b898ee407fe17681b6a7 (patch)
tree55ca0175efcf7554e905671ba666c7d3dc5aff25 /hurd
parent22395607bcc8caa4dc9cf17f6fd141ea6395fcda (diff)
hurd: fix compilation of signal.h in C++
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurd/signal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/hurd/signal.h b/hurd/hurd/signal.h
index f844f0e2ea..81d049c343 100644
--- a/hurd/hurd/signal.h
+++ b/hurd/hurd/signal.h
@@ -167,7 +167,7 @@ extern int _hurd_core_limit;
_HURD_SIGNAL_H_EXTERN_INLINE void *
_hurd_critical_section_lock (void)
{
- struct hurd_sigstate **location =
+ struct hurd_sigstate **location = (struct hurd_sigstate **)
(void *) __hurd_threadvar_location (_HURD_THREADVAR_SIGSTATE);
struct hurd_sigstate *ss = *location;
if (ss == NULL)
@@ -198,7 +198,7 @@ _hurd_critical_section_unlock (void *our_lock)
else
{
/* It was us who acquired the critical section lock. Unlock it. */
- struct hurd_sigstate *ss = our_lock;
+ struct hurd_sigstate *ss = (struct hurd_sigstate *) our_lock;
sigset_t pending;
__spin_lock (&ss->lock);
__spin_unlock (&ss->critical_section_lock);