Browse Source

define MQ_PRIO_MAX

Rich Felker 13 years ago
parent
commit
2b0cedac8d
2 changed files with 2 additions and 1 deletions
  1. 1 0
      include/limits.h
  2. 1 1
      src/conf/sysconf.c

+ 1 - 0
include/limits.h

@@ -32,6 +32,7 @@
 #define SEM_VALUE_MAX 0x7fffffff
 #define SEM_NSEMS_MAX 256
 #define DELAYTIMER_MAX 0x7fffffff
+#define MQ_PRIO_MAX 32768
 
 /* Arbitrary numbers... */
 

+ 1 - 1
src/conf/sysconf.c

@@ -36,7 +36,7 @@ long sysconf(int name)
 		[_SC_AIO_PRIO_DELTA_MAX] = 0, /* ?? */
 		[_SC_DELAYTIMER_MAX] = _POSIX_DELAYTIMER_MAX,
 		[_SC_MQ_OPEN_MAX] = -1,
-		[_SC_MQ_PRIO_MAX] = _POSIX_MQ_PRIO_MAX,
+		[_SC_MQ_PRIO_MAX] = MQ_PRIO_MAX,
 		[_SC_VERSION] = VER,
 		[_SC_PAGE_SIZE] = PAGE_SIZE,
 		[_SC_RTSIG_MAX] = 63, /* ?? */