proc.h (b40ce4165d5eb3a5de1515245055350ae3dbab8e) | proc.h (aee9d2774feb53926535425468e781cccb390605) |
---|---|
1/*- 2 * Copyright (C) 1995, 1996 Wolfgang Solfrank. 3 * Copyright (C) 1995, 1996 TooLs GmbH. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 18 unchanged lines hidden (view full) --- 27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * 31 * $NetBSD: proc.h,v 1.2 1997/04/16 22:57:48 thorpej Exp $ 32 * $FreeBSD$ 33 */ 34 | 1/*- 2 * Copyright (C) 1995, 1996 Wolfgang Solfrank. 3 * Copyright (C) 1995, 1996 TooLs GmbH. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 18 unchanged lines hidden (view full) --- 27 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 28 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 29 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * 31 * $NetBSD: proc.h,v 1.2 1997/04/16 22:57:48 thorpej Exp $ 32 * $FreeBSD$ 33 */ 34 |
35#ifndef _MACHINE_PROC_H_ 36#define _MACHINE_PROC_H_ 37 |
|
35#include <machine/globals.h> 36 37/* 38 * Machine-dependent part of the proc structure 39 */ 40struct mdthread { 41}; 42 43struct mdproc { 44}; | 38#include <machine/globals.h> 39 40/* 41 * Machine-dependent part of the proc structure 42 */ 43struct mdthread { 44}; 45 46struct mdproc { 47}; |
48 49#endif /* !_MACHINE_PROC_H_ */ |
|