Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0 2 : : #include <linux/elf.h> 3 : : #include <linux/fs.h> 4 : : #include <linux/mm.h> 5 : : #include <linux/binfmts.h> 6 : : #include <linux/elfcore.h> 7 : : 8 : 0 : Elf_Half __weak elf_core_extra_phdrs(void) 9 : : { 10 : 0 : return 0; 11 : : } 12 : : 13 : 0 : int __weak elf_core_write_extra_phdrs(struct coredump_params *cprm, loff_t offset) 14 : : { 15 : 0 : return 1; 16 : : } 17 : : 18 : 0 : int __weak elf_core_write_extra_data(struct coredump_params *cprm) 19 : : { 20 : 0 : return 1; 21 : : } 22 : : 23 : 0 : size_t __weak elf_core_extra_data_size(void) 24 : : { 25 : 0 : return 0; 26 : : }