mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 09:31:26 +00:00
83dc1d9942
The get_signal_page() function is defined in signal.c and used in process.c but there is no shared definition. Add one in signal.h to silence the following warning: arch/arm/kernel/signal.c:683:13: warning: symbol 'get_signal_page' was not declared. Should it be static? Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
14 lines
209 B
C
14 lines
209 B
C
#include <asm/ucontext.h>
|
|
|
|
struct sigframe {
|
|
struct ucontext uc;
|
|
unsigned long retcode[4];
|
|
};
|
|
|
|
struct rt_sigframe {
|
|
struct siginfo info;
|
|
struct sigframe sig;
|
|
};
|
|
|
|
extern struct page *get_signal_page(void);
|