Module Name:    src
Committed By:   pooka
Date:           Wed Apr 22 16:48:08 UTC 2015

Modified Files:
        src/sys/rump/include/machine: cpu.h

Log Message:
emulgate clockframe


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/sys/rump/include/machine/cpu.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/include/machine/cpu.h
diff -u src/sys/rump/include/machine/cpu.h:1.20 src/sys/rump/include/machine/cpu.h:1.21
--- src/sys/rump/include/machine/cpu.h:1.20	Sat Mar 15 15:15:26 2014
+++ src/sys/rump/include/machine/cpu.h	Wed Apr 22 16:48:08 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu.h,v 1.20 2014/03/15 15:15:26 pooka Exp $	*/
+/*	$NetBSD: cpu.h,v 1.21 2015/04/22 16:48:08 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008-2011 Antti Kantee.  All Rights Reserved.
@@ -87,6 +87,13 @@ extern struct cpu_info *rumpcpu_info_lis
 #define CPU_IS_PRIMARY(_ci_)		(_ci_->ci_index == 0)
 
 
+struct clockframe {
+	int who_framed_clock;
+};
+#define CLKF_USERMODE(framep)	0
+#define CLKF_PC(framep)		0
+#define CLKF_INTR(framep)	0
+
 #endif /* !_LOCORE */
 
 #endif /* _SYS_RUMP_CPU_H_ */

Reply via email to