diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2000-12-05 09:06:41 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2000-12-05 09:06:41 +0000 |
| commit | e5f2ced1ee5d1ab72d76e7a4c0ddbed9f5a3c3c2 (patch) | |
| tree | 0bf8e1021db5dee32e82da17c0b23817d3898bcb /sys/alpha/linux/linux_sysvec.c | |
| parent | ec79304f0f95d038daf0d8c8630a02dc63f126ff (diff) | |
Notes
Diffstat (limited to 'sys/alpha/linux/linux_sysvec.c')
| -rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index 42ac4b5e194b..b79511aaf584 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -70,11 +70,13 @@ MALLOC_DEFINE(M_LINUX, "linux", "Linux mode structures"); #define SHELLMAGIC 0x2321 #endif - extern struct linker_set linux_ioctl_handler_set; +void osendsig(sig_t catcher, int sig, sigset_t *mask, u_long code); + static int elf_linux_fixup __P((long **stack_base, struct image_params *iparams)); +static int exec_linux_imgact_try __P((struct image_params *iparams)); static int elf_linux_fixup(long **stack_base, struct image_params *imgp) @@ -112,19 +114,12 @@ elf_linux_fixup(long **stack_base, struct image_params *imgp) return 0; } -extern int _ucodesel, _udatasel; - -void osf1_sendsig __P((sig_t, int , sigset_t *, u_long )); -void osendsig(sig_t catcher, int sig, sigset_t *mask, u_long code); - /* * If a linux binary is exec'ing something, try this image activator * first. We override standard shell script execution in order to * be able to modify the interpreter path. We only do this if a linux * binary is doing the exec, so we do not create an EXEC module for it. */ -static int exec_linux_imgact_try __P((struct image_params *iparams)); - static int exec_linux_imgact_try(imgp) struct image_params *imgp; |
