1133759Srwatson/*-
2133759Srwatson * Copyright (c) 2004 Robert N. M. Watson
3133759Srwatson * All rights reserved.
4133759Srwatson *
5133759Srwatson * Redistribution and use in source and binary forms, with or without
6133759Srwatson * modification, are permitted provided that the following conditions
7133759Srwatson * are met:
8133759Srwatson * 1. Redistributions of source code must retain the above copyright
9133759Srwatson *    notice, this list of conditions and the following disclaimer.
10133759Srwatson * 2. Redistributions in binary form must reproduce the above copyright
11133759Srwatson *    notice, this list of conditions and the following disclaimer in the
12133759Srwatson *    documentation and/or other materials provided with the distribution.
13133759Srwatson *
14133759Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15133759Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16133759Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17133759Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18133759Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19133759Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20133759Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21133759Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22133759Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23133759Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24133759Srwatson * SUCH DAMAGE.
25133759Srwatson *
26133759Srwatson * $FreeBSD: releng/10.3/sys/i386/include/mp_watchdog.h 133759 2004-08-15 18:02:09Z rwatson $
27133759Srwatson */
28133759Srwatson
29133759Srwatson#ifndef	_MACHINE_MP_WATCHDOG_H_
30133759Srwatson#define	_MACHINE_MP_WATCHDOG_H_
31133759Srwatson
32133759Srwatsonvoid	ap_watchdog(u_int cpuid);
33133759Srwatson
34133759Srwatson#endif /* !_MACHINE_MP_WATCHDOG_H_ */
35