xref: /openbsd/sys/arch/arm64/include/proc.h (revision f5d56f6d)
1*f5d56f6dSguenther /*	$OpenBSD: proc.h,v 1.2 2017/04/13 03:52:25 guenther Exp $	*/
2f24071e5Spatrick /*	$NetBSD: proc.h,v 1.1 2003/04/26 18:39:46 fvdl Exp $	*/
3f24071e5Spatrick 
4f24071e5Spatrick /*
5f24071e5Spatrick  * Copyright (c) 1991 Regents of the University of California.
6f24071e5Spatrick  * All rights reserved.
7f24071e5Spatrick  *
8f24071e5Spatrick  * Redistribution and use in source and binary forms, with or without
9f24071e5Spatrick  * modification, are permitted provided that the following conditions
10f24071e5Spatrick  * are met:
11f24071e5Spatrick  * 1. Redistributions of source code must retain the above copyright
12f24071e5Spatrick  *    notice, this list of conditions and the following disclaimer.
13f24071e5Spatrick  * 2. Redistributions in binary form must reproduce the above copyright
14f24071e5Spatrick  *    notice, this list of conditions and the following disclaimer in the
15f24071e5Spatrick  *    documentation and/or other materials provided with the distribution.
16f24071e5Spatrick  * 3. Neither the name of the University nor the names of its contributors
17f24071e5Spatrick  *    may be used to endorse or promote products derived from this software
18f24071e5Spatrick  *    without specific prior written permission.
19f24071e5Spatrick  *
20f24071e5Spatrick  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21f24071e5Spatrick  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22f24071e5Spatrick  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23f24071e5Spatrick  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24f24071e5Spatrick  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25f24071e5Spatrick  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26f24071e5Spatrick  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27f24071e5Spatrick  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28f24071e5Spatrick  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29f24071e5Spatrick  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30f24071e5Spatrick  * SUCH DAMAGE.
31f24071e5Spatrick  *
32f24071e5Spatrick  *	@(#)proc.h	7.1 (Berkeley) 5/15/91
33f24071e5Spatrick  */
34f24071e5Spatrick 
35f24071e5Spatrick #ifndef _MACHINE_PROC_H_
36f24071e5Spatrick #define _MACHINE_PROC_H_
37f24071e5Spatrick 
38f24071e5Spatrick /*
39f24071e5Spatrick  * Machine-dependent part of the proc structure for arm64.
40f24071e5Spatrick  */
41f24071e5Spatrick struct mdproc {
42f24071e5Spatrick 	volatile int md_astpending;
43f24071e5Spatrick };
44f24071e5Spatrick 
45f24071e5Spatrick #endif /* _MACHINE_PROC_H_ */
46