Revision aa2dfb372a2a647beedac163ce6f8b0fcbefac29 authored by Chris Mason on 22 May 2011, 16:36:34 UTC, committed by Chris Mason on 22 May 2011, 16:36:34 UTC
2 parent s 945d896 + 73c5de0
Raw File
elfcore.c
#include <linux/elf.h>
#include <linux/fs.h>
#include <linux/mm.h>

#include <asm/elf.h>


Elf_Half __weak elf_core_extra_phdrs(void)
{
	return 0;
}

int __weak elf_core_write_extra_phdrs(struct file *file, loff_t offset, size_t *size,
				      unsigned long limit)
{
	return 1;
}

int __weak elf_core_write_extra_data(struct file *file, size_t *size,
				     unsigned long limit)
{
	return 1;
}

size_t __weak elf_core_extra_data_size(void)
{
	return 0;
}
back to top