summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_exec.h
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2005-12-11 12:16:03 +0000
committerchristos <christos@NetBSD.org>2005-12-11 12:16:03 +0000
commit95e1ffb15694e54f29f8baaa4232152b703c2a5a (patch)
treed6510e195bc06092a8057e34c6442eba4e77d09a /sys/compat/linux/common/linux_exec.h
parent4f17ba81bcaf3f5086d88a346cbfd12506a5e3e6 (diff)
merge ktrace-lwp.
Diffstat (limited to 'sys/compat/linux/common/linux_exec.h')
-rw-r--r--sys/compat/linux/common/linux_exec.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/compat/linux/common/linux_exec.h b/sys/compat/linux/common/linux_exec.h
index 494a8397c40..86a559789f4 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.35 2005/05/20 12:48:27 fvdl Exp $ */
+/* $NetBSD: linux_exec.h,v 1.36 2005/12/11 12:20:19 christos Exp $ */
/*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@@ -124,24 +124,24 @@ __BEGIN_DECLS
extern const struct emul emul_linux;
int linux_sysctl __P((int *, u_int, void *, size_t *, void *, size_t,
- struct proc *));
+ struct lwp *));
void linux_setregs __P((struct lwp *, struct exec_package *, u_long));
-int exec_linux_aout_makecmds __P((struct proc *, struct exec_package *));
-int linux_aout_copyargs __P((struct proc *, struct exec_package *,
+int exec_linux_aout_makecmds __P((struct lwp *, struct exec_package *));
+int linux_aout_copyargs __P((struct lwp *, struct exec_package *,
struct ps_strings *, char **, void *));
void linux_trapsignal __P((struct lwp *, const ksiginfo_t *));
int linux_usertrap __P((struct lwp *, vaddr_t, void *));
#ifdef EXEC_ELF32
-int linux_elf32_probe __P((struct proc *, struct exec_package *, void *,
+int linux_elf32_probe __P((struct lwp *, struct exec_package *, void *,
char *, vaddr_t *));
-int linux_elf32_copyargs __P((struct proc *, struct exec_package *,
+int linux_elf32_copyargs __P((struct lwp *, struct exec_package *,
struct ps_strings *, char **, void *));
#endif
#ifdef EXEC_ELF64
-int linux_elf64_probe __P((struct proc *, struct exec_package *, void *,
+int linux_elf64_probe __P((struct lwp *, struct exec_package *, void *,
char *, vaddr_t *));
-int linux_elf64_copyargs __P((struct proc *, struct exec_package *,
+int linux_elf64_copyargs __P((struct lwp *, struct exec_package *,
struct ps_strings *, char **, void *));
#endif
__END_DECLS