Annotation of freem/src/fma_globals.h, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
1.1 snw 3: * fmadm - globals
4: *
5: *
1.2 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.3 ! snw 8: * Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1 snw 9: *
10: *
11: * This file is part of FreeM.
12: *
13: * FreeM is free software: you can redistribute it and/or modify
14: * it under the terms of the GNU Affero Public License as published by
15: * the Free Software Foundation, either version 3 of the License, or
16: * (at your option) any later version.
17: *
18: * FreeM is distributed in the hope that it will be useful,
19: * but WITHOUT ANY WARRANTY; without even the implied warranty of
20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: * GNU Affero Public License for more details.
22: *
23: * You should have received a copy of the GNU Affero Public License
24: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: *
1.3 ! snw 26: * $Log$
! 27: *
! 28: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
! 29: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 30: **/
31:
32: #if !defined(_FMA_GLOBALS_H)
33: #define _FMA_GLOBALS_H
34:
35: #define FALSE 0
36: #define TRUE 1
37:
38: #define POINT 28
39: #define MINUS 26
40: #define OMEGA 29
41: #define g_EOL 30
42: #define ALPHA 31
43:
44: #define ROOT 0L
45: /* length of blocks. status bytes defined as offset to blocklength */
46: #define BLOCKLEN 1024
47: #define DATALIM (BLOCKLEN-11)
48: #define LLPTR (BLOCKLEN-10)
49: #define NRBLK LLPTR
50: #define RLPTR (BLOCKLEN- 6)
51: #define FREE RLPTR
52: #define BTYP (BLOCKLEN- 3)
53: #define OFFS (BLOCKLEN- 2)
54:
55: /* length of blockpointers in bytes */
56: #define PLEN 3
57:
58: #define EMPTY 0
59: #define FBLK 1
60: #define POINTER 2
61: #define BOTTOM 6
62: #define DATA 8
63:
64: #define PROTECT 30
65:
66: #define LF 10
67: #define CR 13
68:
69: #define NUL 0
70: #define DEL 127
71:
72: /* maximum level (i.e. tree depth) */
73: /* trace limit in globals module, i.e. trees wo'nt grow to the sky */
74: #define MAXLEV 10
75: /* error limit */
76: #define ERRLIM 10000
77:
78:
79: int fma_globals_list (int optc, char **opts);
80: int fma_globals_remove (int optc, char **opts);
81: int fma_globals_examine (int optc, char **opts);
82: int fma_globals_verify (int optc, char **opts);
83:
84: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>