Symbol: arch_fork_arg
headers/private/kernel/arch/thread.h
35
void arch_store_fork_frame(struct arch_fork_arg *arg);
headers/private/kernel/arch/thread.h
36
void arch_restore_fork_frame(struct arch_fork_arg *arg);
headers/private/kernel/thread.h
24
struct arch_fork_arg;
headers/private/kernel/thread.h
50
arch_fork_arg* forkArgs; // If non-NULL, the userland thread
src/system/kernel/arch/arm/arch_thread.cpp
351
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/arm/arch_thread.cpp
371
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/arm64/arch_thread.cpp
240
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/arm64/arch_thread.cpp
249
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/m68k/arch_thread.cpp
263
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/m68k/arch_thread.cpp
277
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/ppc/arch_thread.cpp
240
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/ppc/arch_thread.cpp
254
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/riscv64/arch_thread.cpp
318
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/riscv64/arch_thread.cpp
341
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/sparc/arch_thread.cpp
147
arch_store_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/sparc/arch_thread.cpp
161
arch_restore_fork_frame(struct arch_fork_arg *arg)
src/system/kernel/arch/x86/arch_thread.cpp
258
arch_store_fork_frame(struct arch_fork_arg* arg)
src/system/kernel/arch/x86/arch_thread.cpp
282
arch_restore_fork_frame(struct arch_fork_arg* arg)
src/system/kernel/team.cpp
2107
arch_fork_arg* forkArgs;
src/system/kernel/team.cpp
2156
forkArgs = (arch_fork_arg*)malloc(sizeof(arch_fork_arg));
src/system/kernel/thread.cpp
114
arch_fork_arg* forkArgs;
src/system/kernel/thread.cpp
779
arch_fork_arg archArgs = *args->forkArgs;