Lines Matching refs:queue_path
95 char *queue_path = "/mq_perf_tests"; variable
140 .arg = &queue_path,
189 if (queue_path) in shutdown()
194 mq_unlink(queue_path); in shutdown()
291 queue = mq_open(queue_path, flags, perms, attr); in open_queue()
296 printf("\n\tQueue %s created:\n", queue_path); in open_queue()
602 option = queue_path; in main()
604 queue_path = malloc(strlen(option) + 2); in main()
605 if (!queue_path) { in main()
609 queue_path[0] = '/'; in main()
610 queue_path[1] = 0; in main()
611 strcat(queue_path, option); in main()
654 printf("\tUsing queue path:\t\t\t%s\n", queue_path); in main()