Home
last modified time | relevance | path

Searched refs:task_path (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp2306 kmp_str_buf_t task_path; // "/proc/<pid>/task/<tid>/" path. local
2321 __kmp_str_buf_init(&task_path);
2355 __kmp_str_buf_cat(&task_path, "/proc/", 6);
2356 task_path_fixed_len = task_path.used; // Remember number of used characters.
2381 task_path.used = task_path_fixed_len; // Reset task_path to "/proc/".
2382 __kmp_str_buf_cat(&task_path, proc_entry->d_name,
2384 __kmp_str_buf_cat(&task_path, "/task", 5);
2386 task_dir = opendir(task_path.str);
2404 __kmp_str_buf_cat(&stat_path, task_path.str, task_path.used);
2503 __kmp_str_buf_free(&task_path);