Files
mop3/libprocess/amd64/clone_tramp1.c
kamkow1 217179c9a0
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
Handle IRQs inside the kernel
2026-03-13 20:33:27 +01:00

13 lines
199 B
C

#include <malloc.h>
#include <process.h>
#include <system.h>
void _clone_tramp1 (void) {
struct process_data* pdata = argument_ptr ();
pdata->fn (pdata->arg_ptr);
free (pdata);
quit ();
}