Release 4.7 include/linux/coredump.h
#ifndef _LINUX_COREDUMP_H
#define _LINUX_COREDUMP_H
#include <linux/types.h>
#include <linux/mm.h>
#include <linux/fs.h>
#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.
*/
struct coredump_params;
extern int dump_skip(struct coredump_params *cprm, size_t nr);
extern int dump_emit(struct coredump_params *cprm, const void *addr, int nr);
extern int dump_align(struct coredump_params *cprm, int align);
#ifdef CONFIG_COREDUMP
extern void do_coredump(const siginfo_t *siginfo);
#else
static inline void do_coredump(const siginfo_t *siginfo) {}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alex kelly | alex kelly | 7 | 63.64% | 1 | 33.33% |
denys vlasenko | denys vlasenko | 3 | 27.27% | 1 | 33.33% |
al viro | al viro | 1 | 9.09% | 1 | 33.33% |
| Total | 11 | 100.00% | 3 | 100.00% |
#endif
#endif /* _LINUX_COREDUMP_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 38 | 39.18% | 4 | 44.44% |
daisuke hatayama | daisuke hatayama | 27 | 27.84% | 1 | 11.11% |
alex kelly | alex kelly | 20 | 20.62% | 1 | 11.11% |
denys vlasenko | denys vlasenko | 6 | 6.19% | 1 | 11.11% |
linus torvalds | linus torvalds | 3 | 3.09% | 1 | 11.11% |
richard weinberger | richard weinberger | 3 | 3.09% | 1 | 11.11% |
| Total | 97 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.