arch: Move some functions from arch-dependent to common part

Moved syscall rt_sigaction and functions related to signal.

Change-Id: I39f619e008d9c6018d91099a76dfb30e48757673
Refs: 1487
This commit is contained in:
Ken Sato
2020-06-29 16:02:48 +09:00
committed by Masamichi Takagi
parent b3bd2ea9b3
commit 999bc91b4f
4 changed files with 307 additions and 575 deletions

View File

@ -635,4 +635,6 @@ extern int (*linux_clock_gettime)(clockid_t clk_id, struct timespec *tp);
#define COREDUMP_TO_BE_WOKEN 2
extern void terminate_host(int pid, struct thread *thread);
struct sig_pending *getsigpending(struct thread *thread, int delflag);
int interrupt_from_user(void *regs0);
#endif