/src/tests/kernel/arch/riscv/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $") 36 * contextspfunc() 41 ENTRY(contextspfunc) function 45 END(contextspfunc)
|
/src/tests/kernel/arch/x86_64/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:45 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:45 riastradh Exp $") 36 * contextspfunc() 41 ENTRY(contextspfunc) function 55 END(contextspfunc)
|
/src/tests/kernel/arch/mips/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.2 2025/04/27 16:49:54 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.2 2025/04/27 16:49:54 riastradh Exp $") 40 * contextspfunc() 45 LEAF(contextspfunc) 46 PIC_PROLOGUE(contextspfunc) /* gp setup, sets t3 */ 53 END(contextspfunc)
|
/src/tests/kernel/arch/alpha/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $") 39 * contextspfunc() 44 LEAF(contextspfunc, 1) 50 END(contextspfunc)
|
/src/tests/kernel/arch/arm/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.2 2025/05/07 16:26:47 uwe Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.2 2025/05/07 16:26:47 uwe Exp $") 36 * contextspfunc() 41 ENTRY(contextspfunc) function 51 END(contextspfunc)
|
/src/tests/kernel/arch/aarch64/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.2 2025/06/08 18:55:35 christos Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.2 2025/06/08 18:55:35 christos Exp $") 36 * contextspfunc() 41 ENTRY(contextspfunc) function 46 END(contextspfunc)
|
/src/tests/kernel/arch/i386/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:44 riastradh Exp $") 36 * contextspfunc() 41 ENTRY(contextspfunc) function 47 END(contextspfunc)
|
/src/tests/kernel/arch/hppa/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.2 2025/04/21 12:06:08 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.2 2025/04/21 12:06:08 riastradh Exp $") 36 * contextspfunc() 41 LEAF_ENTRY(contextspfunc) 48 EXIT(contextspfunc)
|
/src/tests/kernel/arch/sh3/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/26 22:34:52 uwe Exp $ */ 31 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/26 22:34:52 uwe Exp $") 35 * void contextspfunc() 40 ENTRY(contextspfunc) function 55 SET_ENTRY_SIZE(contextspfunc)
|
/src/tests/kernel/arch/sparc/ |
contextspfunc.S | 1 /* $NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:45 riastradh Exp $ */ 33 RCSID("$NetBSD: contextspfunc.S,v 1.1 2025/04/21 02:33:45 riastradh Exp $") 51 * contextspfunc() 56 ENTRY(contextspfunc) function 64 END(contextspfunc)
|
/src/tests/kernel/ |
Makefile | 114 .if exists(${ARCHDIR}/contextspfunc.S) 116 SRCS.t_signal_and_sp+= contextspfunc.S 142 CPPFLAGS.contextspfunc.S+= -I${NETBSDSRCDIR}/lib/libc/arch/mips
|
t_signal_and_sp.c | 212 void *volatile contextsp; /* set by contextspfunc.S */ 216 void contextspfunc(void); /* contextspfunc.S assembly routine */ 223 /* control will return to contextspfunc via uc_link */ 226 void contextdone(void); /* called by contextspfunc.S */ 263 makecontext(&uc, &contextspfunc, 0); 284 makecontext(&uc, &contextspfunc, 0); 334 makecontext(&uc2, &contextspfunc, 0); 361 makecontext(&uc2, &contextspfunc, 0);
|