From 57f887358acf3cb7bb3572d186203297fa8db88f Mon Sep 17 00:00:00 2001 From: marcel Date: Tue, 5 Dec 2000 09:04:25 +0000 Subject: Make osendsig global. It's used by the Linuxulator. --- sys/alpha/alpha/machdep.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/alpha/alpha/machdep.c b/sys/alpha/alpha/machdep.c index e91ee19..fc94bec 100644 --- a/sys/alpha/alpha/machdep.c +++ b/sys/alpha/alpha/machdep.c @@ -225,6 +225,8 @@ SYSCTL_INT(_hw, OID_AUTO, availpages, CTLFLAG_RD, &physmem, 0, ""); /* must be 2 less so 0 0 can signal end of chunks */ #define PHYS_AVAIL_ARRAY_END ((sizeof(phys_avail) / sizeof(vm_offset_t)) - 2) +void osendsig(sig_t catcher, int sig, sigset_t *mask, u_long code); + static void identifycpu __P((void)); static vm_offset_t buffer_sva, buffer_eva; @@ -1221,7 +1223,7 @@ DELAY(int n) * frame pointer, it returns to the user * specified pc, psl. */ -static void +void osendsig(sig_t catcher, int sig, sigset_t *mask, u_long code) { struct proc *p = curproc; -- cgit v1.1