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

24 lines
687 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.
*/
2013-10-05 15:32:35 -04:00
struct coredump_params;
extern int dump_skip(struct coredump_params *cprm, size_t nr);
2013-10-05 15:32:35 -04:00
extern int dump_emit(struct coredump_params *cprm, const void *addr, int nr);
2013-10-08 11:05:01 -04:00
extern int dump_align(struct coredump_params *cprm, int align);
2012-10-04 17:15:24 -07:00
#ifdef CONFIG_COREDUMP
2013-10-13 17:57:29 -04:00
extern void do_coredump(const siginfo_t *siginfo);
2012-10-04 17:15:24 -07:00
#else
2013-10-13 17:57:29 -04:00
static inline void do_coredump(const siginfo_t *siginfo) {}
2012-10-04 17:15:24 -07:00
#endif
#endif /* _LINUX_COREDUMP_H */