Module Name: src
Committed By: riastradh
Date: Mon Aug 27 07:10:15 UTC 2018
Modified Files:
src/sys/sys: xcall.h
Log Message:
<sys/xcall.h> needs <sys/types.h> for uint64_t.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/sys/xcall.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/sys/xcall.h
diff -u src/sys/sys/xcall.h:1.6 src/sys/sys/xcall.h:1.7
--- src/sys/sys/xcall.h:1.6 Thu Feb 1 03:15:29 2018
+++ src/sys/sys/xcall.h Mon Aug 27 07:10:15 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: xcall.h,v 1.6 2018/02/01 03:15:29 ozaki-r Exp $ */
+/* $NetBSD: xcall.h,v 1.7 2018/08/27 07:10:15 riastradh Exp $ */
/*-
* Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -33,6 +33,9 @@
#define _SYS_XCALL_H_
#ifdef _KERNEL
+
+#include <sys/types.h>
+
#define XC_HIGHPRI 0x01 /* high priority */
#define XC_HIGHPRI_IPL(ipl) (XC_HIGHPRI | xc_encode_ipl(ipl))