proc.h revision 93264
1178476Sjb/*-
2178476Sjb * Copyright (C) 1995, 1996 Wolfgang Solfrank.
3178476Sjb * Copyright (C) 1995, 1996 TooLs GmbH.
4178476Sjb * All rights reserved.
5178476Sjb *
6178476Sjb * Redistribution and use in source and binary forms, with or without
7178476Sjb * modification, are permitted provided that the following conditions
8178476Sjb * are met:
9178476Sjb * 1. Redistributions of source code must retain the above copyright
10178476Sjb *    notice, this list of conditions and the following disclaimer.
11178476Sjb * 2. Redistributions in binary form must reproduce the above copyright
12178476Sjb *    notice, this list of conditions and the following disclaimer in the
13178476Sjb *    documentation and/or other materials provided with the distribution.
14178476Sjb * 3. All advertising materials mentioning features or use of this software
15178476Sjb *    must display the following acknowledgement:
16178476Sjb *	This product includes software developed by TooLs GmbH.
17178476Sjb * 4. The name of TooLs GmbH may not be used to endorse or promote products
18178476Sjb *    derived from this software without specific prior written permission.
19178476Sjb *
20178476Sjb * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
21178476Sjb * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22178476Sjb * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23178476Sjb * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24178476Sjb * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25178476Sjb * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26178476Sjb * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27178476Sjb * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28178476Sjb * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
29178476Sjb * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30178476Sjb *
31178476Sjb *	$NetBSD: proc.h,v 1.2 1997/04/16 22:57:48 thorpej Exp $
32178476Sjb * $FreeBSD: head/sys/powerpc/include/proc.h 93264 2002-03-27 05:39:23Z dillon $
33178476Sjb */
34178476Sjb
35178476Sjb#ifndef _MACHINE_PROC_H_
36178476Sjb#define	_MACHINE_PROC_H_
37178476Sjb
38178476Sjb/*
39178476Sjb * Machine-dependent part of the proc structure
40178476Sjb */
41178476Sjbstruct mdthread {
42178476Sjb	register_t md_savecrit;
43178476Sjb};
44178476Sjb
45178476Sjbstruct mdproc {
46178476Sjb};
47178476Sjb
48178476Sjb#endif /* !_MACHINE_PROC_H_ */
49178476Sjb