Path: blob/master/arch/um/include/asm/a.out-core.h
10820 views
/* a.out coredump register dumper1*2* Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public Licence7* as published by the Free Software Foundation; either version8* 2 of the Licence, or (at your option) any later version.9*/1011#ifndef __UM_A_OUT_CORE_H12#define __UM_A_OUT_CORE_H1314#ifdef __KERNEL__1516#include <linux/user.h>1718/*19* fill in the user structure for an a.out core dump20*/21static inline void aout_dump_thread(struct pt_regs *regs, struct user *u)22{23}2425#endif /* __KERNEL__ */26#endif /* __UM_A_OUT_CORE_H */272829