Home | History | Annotate | Download | only in brillo

Lines Matching defs:info

57     siginfo_t info;
58 info.si_pid = 0;
59 int rc = HANDLE_EINTR(waitid(P_ALL, 0, &info, WNOHANG | WEXITED));
68 if (info.si_pid == 0) {
72 auto proc = watched_processes_.find(info.si_pid);
74 LOG(INFO) << "Untracked process " << info.si_pid
75 << " terminated with status " << info.si_status
76 << " (code = " << info.si_code << ")";
79 << "Process " << info.si_pid << " terminated with status "
80 << info.si_status << " (code = " << info.si_code << ")";
83 callback.Run(info);