Subversion Repositories wimsdev

Rev

Rev 225 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 225 Rev 12884
Line 25... Line 25...
25
typedef struct shm_struct {
25
typedef struct shm_struct {
26
    int dm_pid, dm_time, dm_lock;
26
    int dm_pid, dm_time, dm_lock;
27
    char loadavg[64];
27
    char loadavg[64];
28
    int haschroot;
28
    int haschroot;
29
    char myip[32];
29
    char myip[32];
30
   
30
 
31
    char *cf_commonpath;
31
    char *cf_commonpath;
32
    char *cf_aliased_cgi;
32
    char *cf_aliased_cgi;
33
    char *cf_aliased_getfile;
33
    char *cf_aliased_getfile;
34
    int   cf_backup_hour;
34
    int   cf_backup_hour;
35
    char *cf_cgi_name;
35
    char *cf_cgi_name;
Line 45... Line 45...
45
    int   cf_default_texposition;
45
    int   cf_default_texposition;
46
    char *cf_devel_modules;
46
    char *cf_devel_modules;
47
    int   cf_doc_quota;
47
    int   cf_doc_quota;
48
    char *cf_doc_regpass;
48
    char *cf_doc_regpass;
49
    int   cf_examlog_limit;
49
    int   cf_examlog_limit;
50
   
50
 
51
    int fcachecnt;
51
    int fcachecnt;
52
} shm_struct;
52
} shm_struct;
53
 
53
 
54
struct shm_struct *shmptr;
54
struct shm_struct *shmptr;
55
 
55