2006-09-07 16:14:53 +02:00
|
|
|
format ELF
|
2006-09-23 16:00:36 +02:00
|
|
|
include "public_stdcall.inc"
|
2006-09-07 16:14:53 +02:00
|
|
|
section '.text' executable
|
2007-10-15 11:42:17 +02:00
|
|
|
public_stdcall _ksys_send_message,12
|
2006-09-07 16:14:53 +02:00
|
|
|
;arg1 - pid
|
|
|
|
;arg2 - msg
|
|
|
|
;arg3 - size
|
|
|
|
push ebx esi
|
|
|
|
mov eax,60
|
|
|
|
mov ebx,2
|
|
|
|
mov ecx,[esp+12]
|
|
|
|
mov edx,[esp+16]
|
|
|
|
mov esi,[esp+20]
|
|
|
|
int 0x40
|
|
|
|
pop esi ebx
|
|
|
|
ret 12
|
|
|
|
|
2007-10-15 11:42:17 +02:00
|
|
|
public_stdcall _ksys_define_receive_area,8
|
2006-09-07 16:14:53 +02:00
|
|
|
;arg1 - area
|
|
|
|
;arg2 - size
|
|
|
|
push ebx
|
|
|
|
mov eax,60
|
|
|
|
mov ebx,1
|
|
|
|
mov ecx,[esp+8]
|
|
|
|
mov edx,[esp+12]
|
|
|
|
int 0x40
|
|
|
|
pop ebx
|
|
|
|
ret 8
|