stub-data.h 242 B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2005 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __STUB_DATA_H
  6. #define __STUB_DATA_H
  7. #include <sys/time.h>
  8. struct stub_data {
  9. long offset;
  10. int fd;
  11. struct itimerval timer;
  12. long err;
  13. };
  14. #endif