Searched refs:queue_path (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/tools/testing/selftests/mqueue/ |
D | mq_open_tests.c | 57 char *queue_path; variable 93 if (queue_path) in shutdown() 98 mq_unlink(queue_path); in shutdown() 205 if ((queue = mq_open(queue_path, flags, perms, attr)) == -1) in test_queue() 212 if (mq_unlink(queue_path)) in test_queue() 227 if ((queue = mq_open(queue_path, flags, perms, attr)) == -1) in test_queue_fail() 234 if (mq_unlink(queue_path)) in test_queue_fail() 245 queue_path = default_queue_path; in main() 254 queue_path = strdup(argv[1]); in main() 256 queue_path = malloc(strlen(argv[1]) + 2); in main() [all …]
|
D | mq_perf_tests.c | 98 char *queue_path = "/mq_perf_tests"; variable 143 .arg = &queue_path, 195 if (queue_path) in shutdown() 200 mq_unlink(queue_path); in shutdown() 297 queue = mq_open(queue_path, flags, perms, attr); in open_queue() 302 printf("\n\tQueue %s created:\n", queue_path); in open_queue() 614 option = queue_path; in main() 616 queue_path = malloc(strlen(option) + 2); in main() 617 if (!queue_path) { in main() 621 queue_path[0] = '/'; in main() [all …]
|