Searched defs:pid (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.cc102 pid_t pid = fork(); local
103 if (pid == 0) {
114 if (pid == -1) {
120 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
121 if (got_pid != pid) {
122 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;
/art/runtime/native/
H A Ddalvik_system_Zygote.cc66 pid_t pid; local
69 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
79 LOG(INFO) << "Process " << pid << " exited cleanly (" << WEXITSTATUS(status) << ")";
81 LOG(INFO) << "Process " << pid << " exited cleanly (" << WEXITSTATUS(status) << ")";
85 LOG(INFO) << "Process " << pid << " terminated by signal (" << WTERMSIG(status) << ")";
87 LOG(INFO) << "Process " << pid << " terminated by signal (" << WTERMSIG(status) << ")";
91 LOG(INFO) << "Process " << pid << " dumped core";
99 if (pid == gSystemServerPid) {
100 LOG(ERROR) << "Exit zygote because system server (" << pid << ") has terminated";
105 if (pid <
422 pid_t pid = fork(); local
528 pid_t pid = ForkAndSpecializeCommon(env, uid, gid, gids, local
[all...]
/art/runtime/
H A Dclass_linker.cc592 pid_t pid = fork(); local
593 if (pid == 0) {
634 pid_t got_pid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
635 if (got_pid != pid) {
636 PLOG(ERROR) << "waitpid failed: wanted " << pid << ", got " << got_pid;

Completed in 115 milliseconds