syscall.h 246 B

12345678910111213
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __SYSCALL_USER_H
  6. #define __SYSCALL_USER_H
  7. extern int record_syscall_start(int syscall);
  8. extern void record_syscall_end(int index, long result);
  9. #endif