OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pstat
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/unistd/
system.c
46
int
pstat
;
local
69
pid = waitpid(pid, (int *)&
pstat
, 0);
73
return (pid == -1 ? -1 :
pstat
);
/bionic/libc/upstream-netbsd/libc/gen/
popen.c
194
int
pstat
;
local
221
pid = waitpid(cur->pid, &
pstat
, 0);
226
return (pid == -1 ? -1 :
pstat
);
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11image.c
156
FILE *
pstat
= fopen("/proc/stat", "r");
local
157
if (
pstat
) {
158
while ( fgets(line, sizeof(line),
pstat
) ) {
163
fclose(
pstat
);
Completed in 545 milliseconds