]>
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> |
1fcccbac DH |
6 | |
7 | Elf_Half __weak elf_core_extra_phdrs(void) | |
8 | { | |
9 | return 0; | |
10 | } | |
11 | ||
506f21c5 | 12 | int __weak elf_core_write_extra_phdrs(struct coredump_params *cprm, loff_t offset) |
1fcccbac DH |
13 | { |
14 | return 1; | |
15 | } | |
16 | ||
506f21c5 | 17 | int __weak elf_core_write_extra_data(struct coredump_params *cprm) |
1fcccbac DH |
18 | { |
19 | return 1; | |
20 | } | |
8d9032bb DH |
21 | |
22 | size_t __weak elf_core_extra_data_size(void) | |
23 | { | |
24 | return 0; | |
25 | } |