Subversion Repositories Kolibri OS

Rev

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

  1. #include<menuet/os.h>
  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. }
  9.