about summary refs log tree commit diff
path: root/sysdeps/htl/sem-destroy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/htl/sem-destroy.c')
-rw-r--r--sysdeps/htl/sem-destroy.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/htl/sem-destroy.c b/sysdeps/htl/sem-destroy.c
index 3e40151bb1..84a35ed5be 100644
--- a/sysdeps/htl/sem-destroy.c
+++ b/sysdeps/htl/sem-destroy.c
@@ -19,6 +19,7 @@
 #include <semaphore.h>
 #include <errno.h>
 
+#include <hurd.h>
 #include <pt-internal.h>
 
 int
@@ -34,10 +35,7 @@ __sem_destroy (sem_t *sem)
 #endif
       )
     /* There are threads waiting on *SEM.  */
-    {
-      errno = EBUSY;
-      return -1;
-    }
+    return __hurd_fail (EBUSY);
 
   return 0;
 }