Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/alpha/include/uapi/asm/sysinfo.h
26498 views
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
/*
3
* include/asm-alpha/sysinfo.h
4
*/
5
6
#ifndef __ASM_ALPHA_SYSINFO_H
7
#define __ASM_ALPHA_SYSINFO_H
8
9
/* This defines the subset of the OSF/1 getsysinfo/setsysinfo calls
10
that we support. */
11
12
#define GSI_UACPROC 8
13
#define GSI_IEEE_FP_CONTROL 45
14
#define GSI_IEEE_STATE_AT_SIGNAL 46
15
#define GSI_PROC_TYPE 60
16
#define GSI_GET_HWRPB 101
17
18
#define SSI_NVPAIRS 1
19
#define SSI_LMF 7
20
#define SSI_IEEE_FP_CONTROL 14
21
#define SSI_IEEE_STATE_AT_SIGNAL 15
22
#define SSI_IEEE_IGNORE_STATE_AT_SIGNAL 16
23
#define SSI_IEEE_RAISE_EXCEPTION 1001 /* linux specific */
24
25
#define SSIN_UACPROC 6
26
27
#define UAC_BITMASK 7
28
#define UAC_NOPRINT 1
29
#define UAC_NOFIX 2
30
#define UAC_SIGBUS 4
31
32
#endif /* __ASM_ALPHA_SYSINFO_H */
33
34