proc.h revision 122940
159477Swpaul/*
259477Swpaul * Copyright (c) 1991 Regents of the University of California.
359477Swpaul * All rights reserved.
459477Swpaul *
559477Swpaul * Redistribution and use in source and binary forms, with or without
659477Swpaul * modification, are permitted provided that the following conditions
759477Swpaul * are met:
859477Swpaul * 1. Redistributions of source code must retain the above copyright
959477Swpaul *    notice, this list of conditions and the following disclaimer.
1059477Swpaul * 2. Redistributions in binary form must reproduce the above copyright
1159477Swpaul *    notice, this list of conditions and the following disclaimer in the
1259477Swpaul *    documentation and/or other materials provided with the distribution.
1359477Swpaul * 3. All advertising materials mentioning features or use of this software
1459477Swpaul *    must display the following acknowledgement:
1559477Swpaul *	This product includes software developed by the University of
1659477Swpaul *	California, Berkeley and its contributors.
1759477Swpaul * 4. Neither the name of the University nor the names of its contributors
1859477Swpaul *    may be used to endorse or promote products derived from this software
1959477Swpaul *    without specific prior written permission.
2059477Swpaul *
2159477Swpaul * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2259477Swpaul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2359477Swpaul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2459477Swpaul * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2559477Swpaul * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2659477Swpaul * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2759477Swpaul * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2859477Swpaul * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2959477Swpaul * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3059477Swpaul * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3159477Swpaul * SUCH DAMAGE.
3259477Swpaul *
3359477Swpaul *	from: @(#)proc.h	7.1 (Berkeley) 5/15/91
3459477Swpaul * $FreeBSD: head/sys/amd64/include/proc.h 122940 2003-11-21 03:02:00Z peter $
3559477Swpaul */
3659477Swpaul
3759477Swpaul#ifndef _MACHINE_PROC_H_
3859477Swpaul#define	_MACHINE_PROC_H_
3959477Swpaul
4059477Swpaul/*
4159477Swpaul * Machine-dependent part of the proc structure for AMD64.
4259477Swpaul */
4359477Swpaulstruct mdthread {
4459477Swpaul	register_t md_savecrit;
4559477Swpaul};
4659477Swpaul
4759477Swpaulstruct mdproc {
4859477Swpaul};
4959477Swpaul
5059477Swpaul#endif /* !_MACHINE_PROC_H_ */
5159477Swpaul