svn commit: r225576 - in head/sys/amd64: amd64 include
Konstantin Belousov
kib at FreeBSD.org
Thu Sep 15 09:54:07 UTC 2011
Author: kib
Date: Thu Sep 15 09:54:07 2011
New Revision: 225576
URL: http://svn.freebsd.org/changeset/base/225576
Log:
Put amd64_syscall() prototype in md_var.h.
Requested by: jhb
Reviewed by: alc, jhb
Approved by: re (bz)
MFC after: 2 weeks
Modified:
head/sys/amd64/amd64/trap.c
head/sys/amd64/include/md_var.h
Modified: head/sys/amd64/amd64/trap.c
==============================================================================
--- head/sys/amd64/amd64/trap.c Thu Sep 15 09:53:04 2011 (r225575)
+++ head/sys/amd64/amd64/trap.c Thu Sep 15 09:54:07 2011 (r225576)
@@ -885,7 +885,6 @@ cpu_fetch_syscall_args(struct thread *td
#include "../../kern/subr_syscall.c"
-void amd64_syscall(struct thread *td, int traced);
/*
* syscall - system call request C handler
*
Modified: head/sys/amd64/include/md_var.h
==============================================================================
--- head/sys/amd64/include/md_var.h Thu Sep 15 09:53:04 2011 (r225575)
+++ head/sys/amd64/include/md_var.h Thu Sep 15 09:54:07 2011 (r225576)
@@ -75,6 +75,7 @@ struct fpreg;
struct dbreg;
struct dumperinfo;
+void amd64_syscall(struct thread *td, int traced);
void busdma_swi(void);
void cpu_setregs(void);
void doreti_iret(void) __asm(__STRING(doreti_iret));
More information about the svn-src-head
mailing list