Home | History | Annotate | Download | only in x86-solaris

Lines Matching defs:pid

21 static void check_pid(int pid, int pid2, const char *instr)
23 if (pid == pid2)
26 fprintf(stderr, "Pid values differ, instruction: %s\n", instr);
31 int pid, pid2, dummy;
34 SYSCALL("int $0x91", SYS_getpid, pid);
38 check_pid(pid, pid2, "syscall");
42 check_pid(pid, pid2, "sysenter");
46 check_pid(pid, pid2, "int $0x80");
49 check_pid(pid, pid2, "int $0x81");
52 check_pid(pid, pid2, "int $0x82");