diff options
| author | christos <christos@NetBSD.org> | 2002-08-26 21:05:59 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2002-08-26 21:05:59 +0000 |
| commit | 830c5c171ab7863ef82b7e31dbff5b57e50266f6 (patch) | |
| tree | 969cdab1930d5cd25897e27ccc34b12dfe661b47 /sys/compat/linux/common/linux_exec.h | |
| parent | 6504ec382d1be5b827b2dd692621509b0e5c8a0d (diff) | |
Implement passing AT_{E,R}{U,G}ID in the elf aux vector, like solaris.
- pass struct proc to copyargs.
- eliminate svr4_copyargs, since it is the same as ours now.
Diffstat (limited to 'sys/compat/linux/common/linux_exec.h')
| -rw-r--r-- | sys/compat/linux/common/linux_exec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_exec.h b/sys/compat/linux/common/linux_exec.h index 029e9f34c08..9a2d2f855ec 100644 --- a/sys/compat/linux/common/linux_exec.h +++ b/sys/compat/linux/common/linux_exec.h @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec.h,v 1.21 2002/04/02 20:23:44 jdolecek Exp $ */ +/* $NetBSD: linux_exec.h,v 1.22 2002/08/26 21:06:01 christos Exp $ */ /*- * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. @@ -120,8 +120,8 @@ int linux_sysctl __P((int *, u_int, void *, size_t *, void *, size_t, struct proc *)); void linux_setregs __P((struct proc *, struct exec_package *, u_long)); int exec_linux_aout_makecmds __P((struct proc *, struct exec_package *)); -int linux_aout_copyargs __P((struct exec_package *, struct ps_strings *, - char **, void *)); +int linux_aout_copyargs __P((struct proc *, struct exec_package *, + struct ps_strings *, char **, void *)); void linux_trapsignal __P((struct proc *, int, u_long)); #ifdef EXEC_ELF32 |
