| /src/sys/arch/news68k/news68k/ |
| romcalls.S | 33 #define SYSCALL trap #14 /* XXX */ 46 SYSCALL 55 SYSCALL 65 SYSCALL 74 SYSCALL 83 SYSCALL
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/ |
| my-syscalls.S | 19 /* This file implements simple Linux syscall wrappers, to be used by tests that 20 need to know exactly where the syscall instructions are. */ 24 /* The SYSCALL macro below current supports calling syscalls with up 25 to 3 arguments, and, assumes the syscall never returns, like exec 34 #define SYSCALL(NAME, NR) \ 40 syscall ;\ 45 #define SYSCALL(NAME, NR) \ 58 #define SYSCALL(NAME, NR) \ 70 SYSCALL (my_execve, __NR_execve) 74 SYSCALL (my_exit, __NR_exit [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/lib/ |
| my-syscalls.S | 19 /* This file implements simple Linux syscall wrappers, to be used by tests that 20 need to know exactly where the syscall instructions are. */ 24 /* The SYSCALL macro below current supports calling syscalls with up 25 to 3 arguments, and, assumes the syscall never returns, like exec 34 #define SYSCALL(NAME, NR) \ 40 syscall ;\ 45 #define SYSCALL(NAME, NR) \ 58 #define SYSCALL(NAME, NR) \ 70 SYSCALL (my_execve, __NR_execve) 74 SYSCALL (my_exit, __NR_exit [all...] |
| /src/lib/libc/arch/alpha/ |
| SYS.h | 31 #include <sys/syscall.h> 44 #define SYSCALL(name) \ 65 SYSCALL(name); \
|
| /src/lib/libc/arch/hppa/ |
| SYS.h | 30 #include <sys/syscall.h> 41 #define SYSCALL(x) !\ 53 SYSCALL(y) !\
|
| /src/lib/libc/arch/ia64/ |
| SYS.h | 33 #include <sys/syscall.h> 42 #define SYSCALL(name) \ 63 SYSCALL(name); \
|
| /src/lib/libc/arch/or1k/ |
| SYS.h | 33 #include <sys/syscall.h> 55 #define SYSCALL(x) _SYSCALL(x,x)
|
| /src/lib/libc/arch/aarch64/ |
| SYS.h | 33 #include <sys/syscall.h> 57 #define SYSCALL(x) \
|
| /src/lib/libc/arch/arm/ |
| SYS.h | 40 #include <sys/syscall.h> 98 #define SYSCALL(x) \
|
| /src/lib/libc/arch/i386/ |
| SYS.h | 67 #include <sys/syscall.h> 124 #define SYSCALL(x) \
|
| /src/lib/libc/arch/m68k/ |
| SYS.h | 38 #include <sys/syscall.h> 61 #define SYSCALL(x) \
|
| /src/lib/libc/arch/powerpc/ |
| SYS.h | 4 #include <sys/syscall.h> 24 #define SYSCALL(x) _SYSCALL(x,x)
|
| /src/lib/libc/arch/powerpc64/ |
| SYS.h | 4 #include <sys/syscall.h> 54 #define SYSCALL(x) _SYSCALL(x,x)
|
| /src/lib/libc/arch/sh3/ |
| SYS.h | 37 #include <sys/syscall.h> 99 #define SYSCALL(x) \
|
| /src/lib/libc/arch/sparc/ |
| SYS.h | 40 #include <sys/syscall.h> 76 * SYSCALL is used when further action must be taken before returning. 89 #define SYSCALL(x) \ 123 * SYSCALL_NOERROR is like SYSCALL, except it's used for syscalls that
|
| /src/lib/libc/arch/sparc64/ |
| SYS.h | 41 #include <sys/syscall.h> 71 * SYSCALL is used when further action must be taken before returning. 78 #define SYSCALL(x) \ 106 * SYSCALL_NOERROR is like SYSCALL, except it's used for syscalls
|
| /src/lib/libc/arch/vax/ |
| SYS.h | 34 #include <sys/syscall.h> 58 #define SYSCALL(x) \
|
| /src/lib/libc/arch/x86_64/ |
| SYS.h | 37 #include <sys/syscall.h> 40 #define SYSTRAP(x) movl $(SYS_ ## x),%eax; movq %rcx, %r10; syscall 42 #define SYSTRAP(x) movl $(SYS_/**/x),%eax; movq %rcx, %r10; syscall 64 #define SYSCALL(x) \
|
| /src/sys/arch/x86/include/ |
| db_machdep.h | 10 #define SYSCALL 2
|
| /src/tests/lib/libc/sys/ |
| t_ptrace_kill.c | 48 #define SYSCALL(a, b) ATF_REQUIRE_EQ_MSG(a, b, "%s got %s", #a, strerror(errno)) 97 SYSCALL(pipe(fdto), 0); 98 SYSCALL(pipe(fdfrom), 0); 106 SYSCALL(pthread_create(&thread, NULL, waitthread, &pid), 0); 108 SYSCALL(read(fdfrom[0], &q, 1), 1); 110 SYSCALL(ptrace(PT_ATTACH, pid, NULL, 0), 0); 112 SYSCALL(write(fdto[1], &p, 1), 1); 115 SYSCALL(ptrace(PT_CONTINUE, pid, (void *)1, 0), 0); 116 SYSCALL(read(fdfrom[0], &p, 1), 1); 118 SYSCALL(ptrace(PT_STOP, pid, NULL, 0), 0) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/ |
| threadcrash.c | 48 /* Thread should block in a syscall. */ 49 SYSCALL, 145 /* The function for a SYSCALL action. Just spins in a loop. The LOCATION 276 case SYSCALL: 309 case SYSCALL: 422 started and are in their worker action (spinning, or syscall). */
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/ |
| threadcrash.c | 48 /* Thread should block in a syscall. */ 49 SYSCALL, 145 /* The function for a SYSCALL action. Just spins in a loop. The LOCATION 276 case SYSCALL: 309 case SYSCALL: 422 started and are in their worker action (spinning, or syscall). */
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| i386-linux-tdep.c | 38 #include "xml-syscall.h" 46 /* The syscall's XML filename for i386. */ 376 #define SYSCALL(NUMBER,NAME) \ 381 #undef SYSCALL 385 of syscall ids into a canonical set of syscall ids used by 390 i386_canonicalize_syscall (int syscall) 392 switch ((enum i386_syscall) syscall) 394 #define SYSCALL_MAP(SYSCALL) \ 395 case i386_sys_ ## SYSCALL: [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| i386-linux-tdep.c | 39 #include "xml-syscall.h" 47 /* The syscall's XML filename for i386. */ 377 #define SYSCALL(NUMBER,NAME) \ 382 #undef SYSCALL 386 of syscall ids into a canonical set of syscall ids used by 391 i386_canonicalize_syscall (int syscall) 393 switch ((enum i386_syscall) syscall) 395 #define SYSCALL_MAP(SYSCALL) \ 396 case i386_sys_ ## SYSCALL: [all...] |
| /src/sys/arch/sparc/sparc/ |
| locore.s | 75 #include <sys/syscall.h> 333 #define SYSCALL b _C_LABEL(_syscall); mov %psr, %l0; nop; nop 492 SYSCALL ! 80 = sun syscall 500 SYSCALL ! 88 = svr4 syscall 501 SYSCALL ! 89 = bsd syscall 753 SYSCALL ! 80 = sun syscall [all...] |