Browse Source

50k Msgs in MQueue

pull/450/head
Christoph Kuhr 7 years ago
parent
commit
d5659142b3
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      example-clients/simple_client1.c
  2. +1
    -1
      linux/avb/listener_mediaclock.c

+ 1
- 1
example-clients/simple_client1.c View File

@@ -193,7 +193,7 @@ main (int argc, char *argv[])

struct mq_attr attr;
attr.mq_flags = 0;
attr.mq_maxmsg = 50000;
attr.mq_maxmsg = 25000;
attr.mq_msgsize = Q_MSG_SIZE;
attr.mq_curmsgs = 0;



+ 1
- 1
linux/avb/listener_mediaclock.c View File

@@ -59,7 +59,7 @@ int create_avb_Mediaclock_Listener( FILE* filepointer, ieee1722_avtp_driver_stat

struct mq_attr attr;
attr.mq_flags = 0;
attr.mq_maxmsg = 50000;
attr.mq_maxmsg = 25000;
attr.mq_msgsize = Q_MSG_SIZE;
attr.mq_curmsgs = 0;



Loading…
Cancel
Save