HomeSort by: relevance | last modified time | path
    Searched defs:EMULNAME (Results 1 - 14 of 14) sorted by relevancy

  /src/sys/arch/mips/mips/
linux_syscall.c 35 #define EMULNAME(x) __CONCAT(linux_,x)
syscall.c 90 #ifndef EMULNAME
91 #define EMULNAME(x) (x)
98 void EMULNAME(syscall_intern)(struct proc *);
99 static void EMULNAME(syscall)(struct lwp *, uint32_t, uint32_t, vaddr_t);
102 EMULNAME(syscall_intern)(struct proc *p)
104 p->p_md.md_syscall = EMULNAME(syscall);
117 EMULNAME(syscall)(struct lwp *l, u_int status, u_int cause, vaddr_t pc)
  /src/sys/arch/powerpc/powerpc/
linux_syscall.c 52 #define EMULNAME(x) __CONCAT(linux_,x)
syscall.c 56 #ifndef EMULNAME
59 #define EMULNAME(x) (x)
79 static void EMULNAME(syscall)(struct trapframe *);
82 EMULNAME(syscall)(struct trapframe *tf)
167 void EMULNAME(syscall_intern)(struct proc *);
170 EMULNAME(syscall_intern)(struct proc *p)
173 p->p_md.md_syscall = EMULNAME(syscall);
  /src/sys/modules/dtrace/linux_syscall/
emultrace.h 12 #define emulname linux macro
13 #define EMULNAME LINUX
  /src/sys/arch/aarch64/aarch64/
netbsd32_syscall.c 36 #define EMULNAME(x) __CONCAT(netbsd32_,x)
linux_syscall.c 39 #define EMULNAME(x) __CONCAT(linux_,x)
linux32_syscall.c 45 #define EMULNAME(x) __CONCAT(linux32_,x)
syscall.c 53 #ifndef EMULNAME
58 #define EMULNAME(x) (x)
84 static void EMULNAME(syscall)(struct trapframe *);
87 EMULNAME(syscall)(struct trapframe *tf)
186 void EMULNAME(syscall_intern)(struct proc *);
189 EMULNAME(syscall_intern)(struct proc *p)
192 p->p_md.md_syscall = EMULNAME(syscall);
aarch32_syscall.c 43 #ifndef EMULNAME
44 #error EMULNAME is not defined
51 static void EMULNAME(syscall)(struct trapframe *);
59 EMULNAME(syscall)(struct trapframe *tf)
230 void EMULNAME(syscall_intern)(struct proc *);
233 EMULNAME(syscall_intern)(struct proc *p)
235 p->p_md.md_syscall = EMULNAME(syscall);
  /src/sys/modules/dtrace/linux32_syscall/
emultrace.h 21 #define emulname linux32 macro
22 #define EMULNAME LINUX32
  /src/sys/modules/dtrace/netbsd32_syscall/
emultrace.h 12 #define emulname netbsd32 macro
13 #define EMULNAME NETBSD32
  /src/sys/modules/dtrace/syscall/
emultrace.h 8 #define emulname netbsd macro
9 #define EMULNAME NETBSD
  /src/sys/arch/riscv/riscv/
syscall.c 44 #ifndef EMULNAME
45 #define EMULNAME(x) (x)
54 void EMULNAME(syscall_intern)(struct proc *);
55 static void EMULNAME(syscall)(struct trapframe *);
57 __CTASSERT(EMULNAME(SYS_MAXSYSARGS) <= 8);
60 EMULNAME(syscall_intern)(struct proc *p)
62 p->p_md.md_syscall = EMULNAME(syscall);
78 EMULNAME(syscall)(struct trapframe *tf)
88 register_t copyargs[EMULNAME(SYS_MAXSYSARGS)];

Completed in 23 milliseconds