sigio.h 638 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. * Licensed under the GPL
  4. */
  5. #ifndef __SIGIO_H__
  6. #define __SIGIO_H__
  7. extern int write_sigio_irq(int fd);
  8. extern int register_sigio_fd(int fd);
  9. extern void sigio_lock(void);
  10. extern void sigio_unlock(void);
  11. #endif
  12. /*
  13. * Overrides for Emacs so that we follow Linus's tabbing style.
  14. * Emacs will notice this stuff at the end of the file and automatically
  15. * adjust the settings for this buffer only. This must remain at the end
  16. * of the file.
  17. * ---------------------------------------------------------------------------
  18. * Local variables:
  19. * c-file-style: "linux"
  20. * End:
  21. */