Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
#include
2
 
3
int __menuet__get_process_table(struct process_table_entry * proctab,int pid)
4
{
5
 int __ret;
6
 __asm__ __volatile__("int $0x40":"=a"(__ret):"0"(9),"b"((__u32)proctab),"c"(pid));
7
 return __ret;
8
}