Sat Aug 27 15:48:36 2011 UTC ()
(HEAD fix) _BSD_VA_LIST_ => va_list


(jym)
diff -r1.30.8.6 -r1.30.8.7 src/sys/arch/xen/include/xen.h

cvs diff -r1.30.8.6 -r1.30.8.7 src/sys/arch/xen/include/xen.h (expand / switch to unified diff)

--- src/sys/arch/xen/include/xen.h 2011/08/27 15:44:09 1.30.8.6
+++ src/sys/arch/xen/include/xen.h 2011/08/27 15:48:35 1.30.8.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: xen.h,v 1.30.8.6 2011/08/27 15:44:09 jym Exp $ */ 1/* $NetBSD: xen.h,v 1.30.8.7 2011/08/27 15:48:35 jym Exp $ */
2 2
3/* 3/*
4 * 4 *
5 * Copyright (c) 2003, 2004 Keir Fraser (on behalf of the Xen team) 5 * Copyright (c) 2003, 2004 Keir Fraser (on behalf of the Xen team)
6 * All rights reserved. 6 * All rights reserved.
7 * 7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to 9 * of this software and associated documentation files (the "Software"), to
10 * deal in the Software without restriction, including without limitation the 10 * deal in the Software without restriction, including without limitation the
11 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 11 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12 * sell copies of the Software, and to permit persons to whom the Software is 12 * sell copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions: 13 * furnished to do so, subject to the following conditions:
14 *  14 *
@@ -69,27 +69,27 @@ void xen_shm_init(void); @@ -69,27 +69,27 @@ void xen_shm_init(void);
69void xenevt_event(int); 69void xenevt_event(int);
70void xenevt_setipending(int, int); 70void xenevt_setipending(int, int);
71void xenevt_notify(void); 71void xenevt_notify(void);
72 72
73void idle_block(void); 73void idle_block(void);
74 74
75/* xen_machdep.c */ 75/* xen_machdep.c */
76void sysctl_xen_sleepstate_setup(void); 76void sysctl_xen_sleepstate_setup(void);
77 77
78#if defined(XENDEBUG) || 1 /* XXX */ 78#if defined(XENDEBUG) || 1 /* XXX */
79#include <sys/stdarg.h> 79#include <sys/stdarg.h>
80 80
81void printk(const char *, ...); 81void printk(const char *, ...);
82void vprintk(const char *, _BSD_VA_LIST_); 82void vprintk(const char *, va_list);
83#endif 83#endif
84 84
85#endif 85#endif
86 86
87#endif /* _XEN_H */ 87#endif /* _XEN_H */
88 88
89/****************************************************************************** 89/******************************************************************************
90 * os.h 90 * os.h
91 *  91 *
92 * random collection of macros and definition 92 * random collection of macros and definition
93 */ 93 */
94 94
95#ifndef _OS_H_ 95#ifndef _OS_H_