svn commit: r225576 - in head/sys/amd64: amd64 include

[ Available lists | Index of svn-src-head | Month of Sep 2011 | Week of 15 Sep 2011 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Konstantin Belousov <kib@FreeBSD.org>
Date
15 Sep 2011 09:54:07
Subject
svn commit: r225576 - in head/sys/amd64: amd64 include
Message-ID
201109150954.p8F9s72u066790@svn.freebsd.org


[ Hide this part ]
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));

Elapsed time: 0.056 seconds