We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2c732 commit c93c2c0Copy full SHA for c93c2c0
mq_prio_max.c
@@ -0,0 +1,11 @@
1
+#include <stdio.h>
2
+#include <limits.h>
3
+#include <unistd.h>
4
+
5
+int main()
6
+{
7
+ printf("mq_priority_max %ld\n", sysconf(_SC_MQ_PRIO_MAX));
8
9
+ return 0;
10
+}
11
0 commit comments