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

Lines Matching full:syscall

5 #include <sys/syscall.h>
8 #define SYSCALL(instr, scnum, out) \
33 /* Normal Solaris/x86 syscall instructions. */
34 SYSCALL("int $0x91", SYS_getpid, pid);
36 /* AMD's syscall instruction. */
37 SYSCALL("syscall", SYS_getpid, pid2);
38 check_pid(pid, pid2, "syscall");
41 SYSCALL("sysenter", SYS_getpid, pid2);
44 /* Linux syscall instructions that are handled as "int $0x91". */
45 SYSCALL("int $0x80", SYS_getpid, pid2);
48 SYSCALL("int $0x81", SYS_getpid, pid2);
51 SYSCALL("int $0x82", SYS_getpid, pid2);
55 SYSCALL("int $0xd2", T_GETHRTIME, dummy);