de57db5cf2
Note that it does not work better than previous in-tree version but it will give us a better base to fix it. joint work with jasper@ most patches adapted from NetBSD fsusage patch from naddy@ ok jasper@
26 lines
959 B
Plaintext
26 lines
959 B
Plaintext
$OpenBSD: patch-sysdeps_bsd_sem_limits_c,v 1.1 2008/02/09 16:52:25 ajacoutot Exp $
|
|
--- sysdeps/bsd/sem_limits.c.orig Fri Dec 28 17:16:24 2007
|
|
+++ sysdeps/bsd/sem_limits.c Fri Dec 28 17:26:07 2007
|
|
@@ -55,7 +55,10 @@ glibtop_get_sem_limits_p (glibtop *server, glibtop_sem
|
|
#include <sys/sem.h>
|
|
|
|
static unsigned long _glibtop_sysdeps_sem_limits =
|
|
-(1L << GLIBTOP_IPC_SEMMAP) + (1L << GLIBTOP_IPC_SEMMNI) +
|
|
+#ifndef __OpenBSD__
|
|
+(1L << GLIBTOP_IPC_SEMMAP) +
|
|
+#endif
|
|
+(1L << GLIBTOP_IPC_SEMMNI) +
|
|
(1L << GLIBTOP_IPC_SEMMNS) + (1L << GLIBTOP_IPC_SEMMNU) +
|
|
(1L << GLIBTOP_IPC_SEMMSL) + (1L << GLIBTOP_IPC_SEMOPM) +
|
|
(1L << GLIBTOP_IPC_SEMUME) + (1L << GLIBTOP_IPC_SEMUSZ) +
|
|
@@ -103,7 +106,9 @@ glibtop_get_sem_limits_p (glibtop *server, glibtop_sem
|
|
if (server->sysdeps.sem_limits == 0)
|
|
return;
|
|
|
|
+#ifndef __OpenBSD__
|
|
buf->semmap = _seminfo.semmap;
|
|
+#endif
|
|
buf->semmni = _seminfo.semmni;
|
|
buf->semmns = _seminfo.semmns;
|
|
buf->semmnu = _seminfo.semmnu;
|