Files
linux-apfs/include/linux/coredump.h
T

22 lines
567 B
C
Raw Normal View History

#ifndef _LINUX_COREDUMP_H
#define _LINUX_COREDUMP_H
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/fs.h>
2012-10-19 13:56:47 -07:00
#include <asm/siginfo.h>
/*
* These are the only things you should do on a core-file: use only these
* functions to write out all the necessary info.
*/
2010-10-14 14:32:06 -07:00
extern int dump_write(struct file *file, const void *addr, int nr);
extern int dump_seek(struct file *file, loff_t off);
2012-10-04 17:15:24 -07:00
#ifdef CONFIG_COREDUMP
2012-11-05 13:11:26 -05:00
extern void do_coredump(siginfo_t *siginfo);
2012-10-04 17:15:24 -07:00
#else
2012-11-05 13:11:26 -05:00
static inline void do_coredump(siginfo_t *siginfo) {}
2012-10-04 17:15:24 -07:00
#endif
#endif /* _LINUX_COREDUMP_H */