Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/sys change the type of e_syscall in struct emul to
details: https://anonhg.NetBSD.org/src/rev/1ea31e9e1c19
branches: trunk
changeset: 500288:1ea31e9e1c19
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Sat Dec 09 12:34:14 2000 +0000
description:
change the type of e_syscall in struct emul to
void (*e_syscall) __P((void))
since it's not uniform between ports
diffstat:
sys/sys/proc.h | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (26 lines):
diff -r 90df9e372f52 -r 1ea31e9e1c19 sys/sys/proc.h
--- a/sys/sys/proc.h Sat Dec 09 12:27:00 2000 +0000
+++ b/sys/sys/proc.h Sat Dec 09 12:34:14 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: proc.h,v 1.114 2000/12/09 07:06:52 mycroft Exp $ */
+/* $NetBSD: proc.h,v 1.115 2000/12/09 12:34:14 jdolecek Exp $ */
/*-
* Copyright (c) 1986, 1989, 1991, 1993
@@ -83,7 +83,6 @@
*/
struct exec_package;
struct ps_strings;
-struct trapframe;
struct emul {
char e_name[8]; /* Symbolic name */
@@ -105,7 +104,7 @@
int e_flags; /* Miscellaneous flags */
/* Syscall handling function */
- void (*e_syscall) __P((struct trapframe *));
+ void (*e_syscall) __P((void));
};
Home |
Main Index |
Thread Index |
Old Index