|
|
1.1 root 1: #ifndef STUNE_H
2: #define STUNE_H
3:
4: /*
5: *-IMPORTS:
6: * <sys/compat.h>
7: * EXTERN_C_BEGIN
8: * EXTERN_C_END
9: * PROTO ()
10: */
11:
12: #include <sys/compat.h>
13:
14: #ifndef MTUNE_T
15: #define MTUNE_T
16: typedef struct mtune mtune_t;
17: #endif
18:
19: #ifndef STUNE_T
20: #define STUNE_T
21: typedef struct stune stune_t;
22: #endif
23:
24: #ifndef SYMBOL_T
25: #define SYMBOL_T
26: typedef struct symbol symbol_t;
27: #endif
28:
29:
30: /*
31: * Structure of an entry read from the 'stune' file.
32: */
33:
34: struct stune {
35: stune_t * st_next; /* global list of tuned parameters */
36: symbol_t * st_name; /* parameter name */
37: mtune_t * st_mtune; /* master parameter entry */
38: long st_value; /* configured value */
39: };
40:
41:
42: EXTERN_C_BEGIN
43:
44: void read_stune_file PROTO ((CONST char * _name));
45:
46: EXTERN_C_END
47:
48: #endif /* ! defined (STUNE_H) */
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.