coredump.h 407 B

12345678910111213141516
  1. #ifndef _LINUX_COREDUMP_H
  2. #define _LINUX_COREDUMP_H
  3. #include <linux/types.h>
  4. #include <linux/mm.h>
  5. #include <linux/fs.h>
  6. /*
  7. * These are the only things you should do on a core-file: use only these
  8. * functions to write out all the necessary info.
  9. */
  10. extern int dump_write(struct file *file, const void *addr, int nr);
  11. extern int dump_seek(struct file *file, loff_t off);
  12. #endif /* _LINUX_COREDUMP_H */