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