diff options
author | Nikolay Sturm <sturm@cvs.openbsd.org> | 2004-05-13 20:20:25 +0000 |
---|---|---|
committer | Nikolay Sturm <sturm@cvs.openbsd.org> | 2004-05-13 20:20:25 +0000 |
commit | 4268cc6c2417477493619708f48678f3eb8ff22f (patch) | |
tree | 62d05c086f5a5f5d47ef70f78c071ca01ccb777b /sys/arch/amd64/include | |
parent | 2125db2d855a542bbe0dcdf2ad4f173f365b6e1a (diff) |
activate systrace on amd64, while here get rid of syscall_{plain,fancy}
instead use syscall() as everywhere else
ok mickey, tested and ok tedu@
Diffstat (limited to 'sys/arch/amd64/include')
-rw-r--r-- | sys/arch/amd64/include/proc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/include/proc.h b/sys/arch/amd64/include/proc.h index 89e8360b954..5a6cbc840e7 100644 --- a/sys/arch/amd64/include/proc.h +++ b/sys/arch/amd64/include/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.1 2004/01/28 01:39:39 mickey Exp $ */ +/* $OpenBSD: proc.h,v 1.2 2004/05/13 20:20:24 sturm Exp $ */ /* $NetBSD: proc.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $ */ /* @@ -48,8 +48,6 @@ struct mdproc { struct trapframe *md_regs; /* registers on current frame */ int md_tss_sel; /* TSS selector */ int md_flags; - /* Syscall handling function */ - void (*md_syscall)(struct trapframe); __volatile int md_astpending; }; |