syscall.h 246 B

123456789101112
  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