OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:task_stat
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/sandbox/linux/services/
thread_helpers.cc
29
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/
unit_tests.cc
33
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 70 milliseconds