Searched defs:task_stat (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/sandbox/linux/services/
H A Dthread_helpers.cc29 struct stat task_stat; local
30 int fstat_ret = fstat(proc_self_task, &task_stat);
34 CHECK_LE(3UL, task_stat.st_nlink);
38 return task_stat.st_nlink == 3;
76 struct stat task_stat; local
78 fstatat(proc_self_task, thread_id_dir_str.c_str(), &task_stat, 0);
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc33 struct stat task_stat; local
34 int task_d = stat("/proc/self/task", &task_stat);
35 // task_stat.st_nlink should be the number of tasks + 2 (accounting for
37 if (task_d != 0 || task_stat.st_nlink < 3)
39 const int num_threads = task_stat.st_nlink - 2;

Completed in 81 milliseconds