mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
506f21c556
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
24 lines
396 B
C
24 lines
396 B
C
#include <linux/elf.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/binfmts.h>
|
|
|
|
Elf_Half __weak elf_core_extra_phdrs(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int __weak elf_core_write_extra_phdrs(struct coredump_params *cprm, loff_t offset)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int __weak elf_core_write_extra_data(struct coredump_params *cprm)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
size_t __weak elf_core_extra_data_size(void)
|
|
{
|
|
return 0;
|
|
}
|