Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
format ELF
2
;include "public_stdcall.inc"
3
 
4
public _ksys_get_process_table
5
 
6
section '.text' executable
7
 
8
_ksys_get_process_table:
9
;arg1 - pointer to information
10
;arg2 - pid
11
  mov   eax,9
12
  mov   ebx,[esp+4]
13
  mov   ecx,[esp+8]
14
  int   0x40
15
 
16
  ret   8