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