Skip to content

Commit c93c2c0

Browse files
author
DevNaga
committed
update
1 parent 4c2c732 commit c93c2c0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

mq_prio_max.c

+11
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)