.globl __kernelDispatchCall .section .text /* Really simple function, takes our va-list, and brings it to the trap handler in the kernel. */ #ifdef __x86_64__ __kernelDispatchCall: int $0x33 ret #elif defined(__powerpc64__) __kernelDispatchCall: mflr 3 sc blr #endif