2010-03-23 01:09:11 +01:00
|
|
|
#include <minix/ipcconst.h>
|
|
|
|
|
2010-03-03 15:27:30 +01:00
|
|
|
.globl __notify, __send, __senda, __sendnb, __receive, __sendrec, __do_kernel_call
|
|
|
|
|
|
|
|
IPCVEC = 33 /* ipc trap to kernel */
|
|
|
|
KERVEC = 32 /* syscall trap to kernel */
|
|
|
|
|
|
|
|
SRC_DST = 8 /* source/ destination process */
|
|
|
|
MESSAGE = 12 /* message pointer */
|
2010-03-23 01:09:11 +01:00
|
|
|
STATUS = 16 /* status pointer */
|
2010-03-03 15:27:30 +01:00
|
|
|
|
|
|
|
/**========================================================================* */
|
|
|
|
/* IPC assembly routines * */
|
|
|
|
/**========================================================================* */
|
2010-03-23 01:09:11 +01:00
|
|
|
/* all message passing routines save ebx, but destroy eax and ecx. */
|
2010-03-03 15:27:30 +01:00
|
|
|
.text
|
|
|
|
__send:
|
|
|
|
push %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
movl SRC_DST(%ebp), %eax /* eax = dest-src */
|
|
|
|
movl MESSAGE(%ebp), %ebx /* ebx = message pointer */
|
|
|
|
movl $SEND, %ecx /* _send(dest, ptr) */
|
|
|
|
int $IPCVEC /* trap to the kernel */
|
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
__receive:
|
|
|
|
push %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
movl SRC_DST(%ebp), %eax /* eax = dest-src */
|
|
|
|
movl MESSAGE(%ebp), %ebx /* ebx = message pointer */
|
|
|
|
movl $RECEIVE, %ecx /* _receive(src, ptr) */
|
|
|
|
int $IPCVEC /* trap to the kernel */
|
2010-03-23 01:09:11 +01:00
|
|
|
movl STATUS(%ebp), %ecx /* ecx = status pointer */
|
|
|
|
movl %ebx, (%ecx)
|
2010-03-03 15:27:30 +01:00
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
__sendrec:
|
|
|
|
push %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
movl SRC_DST(%ebp), %eax /* eax = dest-src */
|
|
|
|
movl MESSAGE(%ebp), %ebx /* ebx = message pointer */
|
|
|
|
movl $SENDREC, %ecx /* _sendrec(srcdest, ptr) */
|
|
|
|
int $IPCVEC /* trap to the kernel */
|
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
__notify:
|
|
|
|
push %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
movl SRC_DST(%ebp), %eax /* eax = destination */
|
|
|
|
movl $NOTIFY, %ecx /* _notify(srcdst) */
|
|
|
|
int $IPCVEC /* trap to the kernel */
|
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
__sendnb:
|
|
|
|
push %ebp
|
|
|
|
movl %esp, %ebp
|
|
|
|
push %ebx
|
|
|
|
movl SRC_DST(%ebp), %eax /* eax = dest-src */
|
|
|
|
movl MESSAGE(%ebp), %ebx /* ebx = message pointer */
|
|
|
|
movl $SENDNB, %ecx /* _sendnb(dest, ptr) */
|
|
|
|
int $IPCVEC /* trap to the kernel */
|
|
|
|
pop %ebx
|
|
|
|
pop %ebp
|
|
|
|
ret
|
|
|
|
|
|
|
|
__do_kernel_call:
|
|
|
|
/* pass the message pointer to kernel in the %eax register */
|
|
|
|
movl 4(%esp), %eax
|
|
|
|
int $KERVEC
|
|
|
|
ret
|