Searched refs:queue_path (Results 1 – 2 of 2) sorted by relevance
/external/linux-kselftest/tools/testing/selftests/mqueue/ |
D | mq_open_tests.c | 55 char *queue_path; variable 90 if (queue_path) in shutdown() 95 mq_unlink(queue_path); in shutdown() 202 if ((queue = mq_open(queue_path, flags, perms, attr)) == -1) in test_queue() 209 if (mq_unlink(queue_path)) in test_queue() 224 if ((queue = mq_open(queue_path, flags, perms, attr)) == -1) in test_queue_fail() 231 if (mq_unlink(queue_path)) in test_queue_fail() 252 queue_path = strdup(argv[1]); in main() 254 queue_path = malloc(strlen(argv[1]) + 2); in main() 255 if (!queue_path) { in main() [all …]
|
D | mq_perf_tests.c | 96 char *queue_path = "/mq_perf_tests"; variable 141 .arg = &queue_path, 190 if (queue_path) in shutdown() 195 mq_unlink(queue_path); in shutdown() 292 queue = mq_open(queue_path, flags, perms, attr); in open_queue() 297 printf("\n\tQueue %s created:\n", queue_path); in open_queue() 603 option = queue_path; in main() 605 queue_path = malloc(strlen(option) + 2); in main() 606 if (!queue_path) { in main() 610 queue_path[0] = '/'; in main() [all …]
|