HomeSort by relevance Sort by last modified time
    Searched defs:pstat (Results 1 - 3 of 3) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
system.c 46 int pstat; local
69 pid = waitpid(pid, (int *)&pstat, 0);
73 return (pid == -1 ? -1 : pstat);
  /bionic/libc/upstream-netbsd/lib/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 160 milliseconds