-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathhconsts.h
376 lines (322 loc) · 13.7 KB
/
hconsts.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/* HCONSTS.H (c) Copyright "Fish" (David B. Trout), 2005-2012 */
/* Hercules #define constants... */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
// This header auto-#included by 'hercules.h'...
//
// The <config.h> header and other required headers are
// presumed to have already been #included ahead of it...
#ifndef _HCONSTS_H
#define _HCONSTS_H
#include "hercules.h"
/*-------------------------------------------------------------------*/
/* Maximum CPU Engines */
/*-------------------------------------------------------------------*/
#ifndef MAX_CPU_ENGINES
#ifdef HAVE___UINT128_T
#define MAX_CPU_ENGINES 128
#else
#define MAX_CPU_ENGINES 64
#endif
#endif
#define PREF_DEF_MAXCPU 8 /* Default sysblk.maxcpu
to 8 according to old
MAX_CPU_ENGINES default */
/*-------------------------------------------------------------------*/
/* Miscellaneous system related constants we could be missing... */
/*-------------------------------------------------------------------*/
#ifndef MAX_PATH
#ifdef PATH_MAX
#define MAX_PATH PATH_MAX
#else
#define MAX_PATH 4096
#endif
#endif
#define PATH_SEP "/"
#if defined( _MSVC_ )
// The following are missing from MINGW32/MSVC...
#ifndef S_IRGRP
#define S_IRGRP 0
#endif
#ifndef S_IWGRP
#define S_IWGRP 0
#endif
#ifndef SIGUSR2
#define SIGUSR2 31
#endif
#ifndef IFNAMSIZ
#define IFNAMSIZ 16
#endif
#ifndef IFHWADDRLEN
#define IFHWADDRLEN 6
#endif
#ifndef EFAULT
#if defined (WSAEFAULT)
#define EFAULT WSAEFAULT
#else
#define EFAULT 14
#endif
#endif
#ifndef ENOSYS
#if defined (WSASYSCALLFAILURE)
#define ENOSYS WSASYSCALLFAILURE
#else
#define ENOSYS 88
#endif
#endif
#ifndef EOPNOTSUPP
#if defined (WSAEOPNOTSUPP)
#define EOPNOTSUPP WSAEOPNOTSUPP
#else
#define EOPNOTSUPP 95
#endif
#endif
#ifndef ECONNRESET
#if defined (WSAECONNRESET)
#define ECONNRESET WSAECONNRESET
#else
#define ECONNRESET 104
#endif
#endif
#ifndef ENOBUFS
#if defined (ENOMEM)
#define ENOBUFS ENOMEM
#else
#define ENOBUFS 105
#endif
#endif
#ifndef EAFNOSUPPORT
#if defined (WSAEAFNOSUPPORT)
#define EAFNOSUPPORT WSAEAFNOSUPPORT
#else
#define EAFNOSUPPORT 106
#endif
#endif
#ifndef EPROTOTYPE
#if defined (WSAEPROTOTYPE)
#define EPROTOTYPE WSAEPROTOTYPE
#else
#define EPROTOTYPE 107
#endif
#endif
#ifndef ENOTSOCK
#if defined (WSAENOTSOCK)
#define ENOTSOCK WSAENOTSOCK
#else
#define ENOTSOCK 108
#endif
#endif
#ifndef EADDRINUSE
#if defined (WSAEADDRINUSE)
#define EADDRINUSE WSAEADDRINUSE
#else
#define EADDRINUSE 112
#endif
#endif
#ifndef ENETDOWN
#if defined (WSAENETDOWN)
#define ENETDOWN WSAENETDOWN
#else
#define ENETDOWN 115
#endif
#endif
#ifndef ETIMEDOUT
#if defined (WSAETIMEDOUT)
#define ETIMEDOUT WSAETIMEDOUT
#else
#define ETIMEDOUT 116
#endif
#endif
#ifndef EINPROGRESS
#if defined (WSAEINPROGRESS)
#define EINPROGRESS WSAEINPROGRESS
#else
#define EINPROGRESS 119
#endif
#endif
#ifndef EMSGSIZE
#if defined (E2BIG)
#define EMSGSIZE E2BIG
#else
#define EMSGSIZE 122
#endif
#endif
#ifndef EPROTONOSUPPORT
#if defined (WSAEPROTONOSUPPORT)
#define EPROTONOSUPPORT WSAEPROTONOSUPPORT
#else
#define EPROTONOSUPPORT 123
#endif
#endif
#ifndef ENOTCONN
#if defined (WSAENOTCONN)
#define ENOTCONN WSAENOTCONN
#else
#define ENOTCONN 128
#endif
#endif
#ifndef ENOTSUP
#if defined (ENOSYS)
#define ENOTSUP ENOSYS
#else
#define ENOTSUP 134
#endif
#endif
#ifndef ENOMEDIUM
#if defined (ENOENT)
#define ENOMEDIUM ENOENT
#else
#define ENOMEDIUM 135
#endif
#endif
#ifndef EOVERFLOW
#if defined (ERANGE)
#define EOVERFLOW ERANGE
#else
#define EOVERFLOW 139
#endif
#endif
#endif // defined(_MSVC_)
// CLK_TCK not part of SUSE 7.2 specs; added. (VB)
#ifndef CLK_TCK
#define CLK_TCK CLOCKS_PER_SEC
#endif
/*-------------------------------------------------------------------*/
/* Default console tn3270/telnet session TCP keepalive values */
/*-------------------------------------------------------------------*/
#if !defined( HAVE_BASIC_KEEPALIVE )
/* No TCP keepalive support at all */
#define KEEPALIVE_IDLE_TIME 0 /* Idle time to first probe */
#define KEEPALIVE_PROBE_INTERVAL 0 /* Probe timeout value */
#define KEEPALIVE_PROBE_COUNT 0 /* Max probe timeouts */
#elif !defined( HAVE_PARTIAL_KEEPALIVE )
/* Basic TCP keepalive support */
#define KEEPALIVE_IDLE_TIME 7200/* Idle time to first probe */
#define KEEPALIVE_PROBE_INTERVAL 1 /* Probe timeout value */
#define KEEPALIVE_PROBE_COUNT 10 /* Max probe timeouts */
#else
/* Partial or Full TCP keepalive support */
#define KEEPALIVE_IDLE_TIME 3 /* Idle time to first probe */
#define KEEPALIVE_PROBE_INTERVAL 1 /* Probe timeout value */
#define KEEPALIVE_PROBE_COUNT 10 /* Max probe timeouts */
#endif // (KEEPALIVE)
/*-------------------------------------------------------------------*/
/* Miscellaneous Hercules-related constants... */
/*-------------------------------------------------------------------*/
#if defined(OPTION_WINDOWS_HOST_FILENAMES)
#define PATHSEPC '\\' /* Windows Versions */
#define PATHSEPS "\\"
#else
#define PATHSEPC '/' /* Everyone else */
#define PATHSEPS "/"
#endif
#define SPACE ' ' /* <---<<< Look close! There's a space there! */
/* Definitions for OS tailoring - msb eq mon event, lsb eq oper exc. */
#define OS_NONE 0x7FFFFFFFF7DE7FFFULL /* No spec OS tail. */
#define OS_OS390 0x7FF673FFF7DE7FFDULL /* OS/390 */
#define OS_ZOS 0x7B7673FFF7DE7FB7ULL /* z/OS */
#define OS_VSE 0x7FF673FFF7DE7FFFULL /* VSE */
#define OS_VM 0x7FFFFFFFF7DE7FFCULL /* VM */
#define OS_OPENSOLARIS 0xF8FFFFFFFFDE7FF7ULL /* OpenSolaris */
#if !defined(NO_IEEE_SUPPORT)
#define OS_LINUX 0x78FFFFFFF7DE7FF7ULL /* Linux */
#else
#define OS_LINUX 0x78FFFFFFF7DE7FD6ULL /* Linux */
#endif
/* Definitions for program product OS restriction flag. This flag is ORed
with the SCLP READ CPU INFO response code. A 4 here makes the CPU look
like an IFL (Integrated Facility for Linux) engine, which cannot run
licensed ESA/390 or z/Architecture OSes. */
#define PGM_PRD_OS_RESTRICTED 4 /* Restricted */
#define PGM_PRD_OS_LICENSED 0 /* Licensed */
/* Storage access bits used by logical_to_main */
#define ACC_CHECK 0x0001 /* Possible storage update*/
#define ACC_WRITE 0x0002 /* Storage update */
#define ACC_READ 0x0004 /* Storage read */
/* Storage access bits used by other dat.h routines */
#define ACC_NOTLB 0x0100 /* Don't do TLB lookup */
#define ACC_PTE 0x0200 /* Return page table entry*/
#define ACC_LPTEA 0x0400 /* Esame page table entry */
#define ACC_SPECIAL_ART 0x0800 /* Used by BSG */
#define ACC_ENH_MC 0x1000 /* Used by Enhanced MC */
#define ACCTYPE_HW 0 /* Hardware access */
#define ACCTYPE_INSTFETCH ACC_READ /* Instruction fetch */
#define ACCTYPE_READ ACC_READ /* Read storage */
#define ACCTYPE_WRITE_SKP ACC_CHECK /* Write, skip change bit */
#define ACCTYPE_WRITE ACC_WRITE /* Write storage */
#define ACCTYPE_TAR 0 /* TAR instruction */
#define ACCTYPE_LRA ACC_NOTLB /* LRA instruction */
#define ACCTYPE_TPROT 0 /* TPROT instruction */
#define ACCTYPE_IVSK 0 /* ISVK instruction */
#define ACCTYPE_BSG ACC_SPECIAL_ART /* BSG instruction */
#define ACCTYPE_PTE (ACC_PTE|ACC_NOTLB) /* page table entry */
#define ACCTYPE_SIE 0 /* SIE host access */
#define ACCTYPE_STRAG 0 /* STRAG instruction */
#define ACCTYPE_LPTEA (ACC_LPTEA|ACC_NOTLB) /* LPTEA instruction */
#define ACCTYPE_EMC (ACC_ENH_MC|ACCTYPE_WRITE) /* MC instr. */
/* Special value for arn parameter for translate functions in dat.c */
#define USE_INST_SPACE (-1) /* Instruction space virtual */
#define USE_REAL_ADDR (-2) /* Real address */
#define USE_PRIMARY_SPACE (-3) /* Primary space virtual */
#define USE_SECONDARY_SPACE (-4) /* Secondary space virtual */
#define USE_HOME_SPACE (-5) /* Home space virtual */
#define USE_ARMODE 16 /* OR with access register
number to force AR mode */
/* Interception codes used by longjmp/SIE */
#define SIE_NO_INTERCEPT (-1) /* Continue (after pgmint) */
#define SIE_HOST_INTERRUPT (-2) /* Host interrupt pending */
#define SIE_HOST_PGMINT (-3) /* Host program interrupt */
#define SIE_INTERCEPT_INST (-4) /* Instruction interception */
#define SIE_INTERCEPT_INSTCOMP (-5) /* Instr. int TS/CS/CDS */
#define SIE_INTERCEPT_EXTREQ (-6) /* External interrupt */
#define SIE_INTERCEPT_IOREQ (-7) /* I/O interrupt */
#define SIE_INTERCEPT_WAIT (-8) /* Wait state loaded */
#define SIE_INTERCEPT_STOPREQ (-9) /* STOP reqeust */
#define SIE_INTERCEPT_RESTART (-10) /* Restart interrupt */
#define SIE_INTERCEPT_MCK (-11) /* Machine Check interrupt */
#define SIE_INTERCEPT_EXT (-12) /* External interrupt pending*/
#define SIE_INTERCEPT_VALIDITY (-13) /* SIE validity check */
#define SIE_INTERCEPT_PER (-14) /* SIE guest per event */
#define SIE_INTERCEPT_IOINT (-15) /* I/O Interruption */
#define SIE_INTERCEPT_IOINTP (-16) /* I/O Interruption pending */
#define SIE_INTERCEPT_IOINST (-17) /* I/O Instruction */
#if defined(SIE_DEBUG_PERFMON)
#define SIE_PERF_ENTER 0 /* SIE performance monitor */
#define SIE_PERF_ENTER_F -31 /* Enter Fast (retain state) */
#define SIE_PERF_EXIT -30 /* SIE exit */
#define SIE_PERF_RUNSIE -29 /* run_sie entered */
#define SIE_PERF_RUNLOOP_1 -28 /* run_sie runloop 1 */
#define SIE_PERF_RUNLOOP_2 -27 /* run_sue runloop 2 */
#define SIE_PERF_INTCHECK -26 /* run_sie intcheck */
#define SIE_PERF_EXEC -25 /* run_sie execute inst */
#define SIE_PERF_EXEC_U -24 /* run_sie unrolled exec */
#endif /*defined(SIE_DEBUG_PERFMON)*/
/*-------------------------------------------------------------------*/
/* Definitions for CTC protocol types */
/*-------------------------------------------------------------------*/
#define CTC_XCA 1 /* XCA device */
#define CTC_LCS 2 /* LCS device */
#define CTC_CETI 3 /* CETI device */
#define CTC_CLAW 4 /* CLAW device */
#define CTC_CTCN 5 /* CTC link via NETBIOS */
#define CTC_CTCT 6 /* CTC link via TCP */
#define CTC_CTCI 7 /* CTC link to TCP/IP stack */
#define CTC_VMNET 8 /* CTC link via wfk's vmnet */
#define CTC_CFC 9 /* Coupling facility channel */
#define CTC_PTP 10 /* PTP link to TCP/IP stack */
#define CTC_CTCE 11 /* Enhanced CTC link via TCP */
/*-------------------------------------------------------------------*/
/* Minimum, maximum and default scripting timeout values */
/*-------------------------------------------------------------------*/
#define MIN_PAUSE_TIMEOUT 0.001 /* Minimum pause seconds */
#define DEF_PAUSE_TIMEOUT 1.0 /* Default pause seconds */
#define MAX_PAUSE_TIMEOUT 999.0 /* Maximum pause seconds */
#define MIN_RUNTEST_DUR 0.001 /* Minimum runtest seconds */
#define DEF_RUNTEST_DUR 30.0 /* Default runtest seconds */
#define MAX_RUNTEST_DUR 300.0 /* Maximum runtest seconds */
#define MAX_RUNTEST_FACTOR (((4.0 * 1024.0 * 1024.0 * 1024.0) - 1.0) \
/ 1000000.0 /* (usecs) */ \
/ MAX_RUNTEST_DUR)
#endif // _HCONSTS_H