blob: 69529c025797c724884630d6ae7b55b537f28593 (
plain)
1
2
3
4
5
6
7
8
|
#include <minix/ipcconst.h>
#include <machine/asm.h>
ENTRY(_do_kernel_call_intr)
/* pass the message pointer to kernel in the %eax register */
movl 4(%esp), %eax
int $KERVEC_INTR
ret
|