elf coredump: replace ELF_CORE_EXTRA_* macros by functions
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / elfcore.c
blob5445741f4b4caa85419807240ffa7813215de047
1 #include <linux/elf.h>
2 #include <linux/fs.h>
3 #include <linux/mm.h>
5 #include <asm/elf.h>
8 Elf_Half __weak elf_core_extra_phdrs(void)
10 return 0;
13 int __weak elf_core_write_extra_phdrs(struct file *file, loff_t offset, size_t *size,
14 unsigned long limit)
16 return 1;
19 int __weak elf_core_write_extra_data(struct file *file, size_t *size,
20 unsigned long limit)
22 return 1;