[hurd,commited 06/10] htl: Make sem_open return ENOSYS

Samuel Thibault samuel.thibault@ens-lyon.org
Mon Feb 10 01:13:00 GMT 2020


instead of EOPNOTSUPP, which is for sockets.
---
 sysdeps/htl/sem-open.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/htl/sem-open.c b/sysdeps/htl/sem-open.c
index 28483ef6a5..682f0e1a88 100644
--- a/sysdeps/htl/sem-open.c
+++ b/sysdeps/htl/sem-open.c
@@ -24,7 +24,7 @@
 sem_t *
 __sem_open (const char *name, int open_flags, ...)
 {
-  errno = EOPNOTSUPP;
+  errno = ENOSYS;
   return SEM_FAILED;
 }
 
-- 
2.24.1



More information about the Libc-alpha mailing list