Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
145 halyavin 1
format ELF
2
section '.text' executable
3
public _msys_get_process_table
4
_msys_get_process_table:
5
;arg1 - pointer to information
6
;arg2 - pid
7
  mov   edx,ebx
8
  mov   eax,9
9
  mov   ebx,[esp+4]
10
  mov   ecx,[esp+8]
11
  int   0x40
12
  mov   ebx,edx
13
  ret   8