|
|
DataMuseum.dkPresents historical artifacts from the history of: Regnecentalen RC-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Regnecentalen RC-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T U r
Length: 1113 (0x459)
Types: TextFile
Notes: UNIX file
Names: »recover.h«
└─⟦a6ab2eb36⟧ Bits:30004042/kconfig3.imd SW95705I 386/ix Multi-user Release 1.2
└─⟦a6ab2eb36⟧ UNIX Filesystem
└─⟦this⟧ »kc/new/usr/include/sys/recover.h«
/* Copyright (c) 1984 AT&T */
/* All Rights Reserved */
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
/* The copyright notice above does not evidence any */
/* actual or intended publication of such source code. */
#ident "@(#)recover.h 1.3"
extern struct rd_user * cr_rduser();
extern void del_rduser();
extern void clean_GEN_rd();
extern void cleanup();
/* opcodes */
#define REC_DISCONN 1 /* circuit gone */
#define REC_KILL 2 /* exit */
#define REC_FUMOUNT 3 /* forced unmount */
#define REC_MSG 4
/* rfdaemon msgflag flags */
#define MORE_SERVE 0x001
#define DISCONN 0x002
#define RFSKILL 0x004
#define FUMOUNT 0x008
/* active general and specific RDs */
#define ACTIVE_GRD(R) ((R->rd_stat & RDUSED) && \
(R->rd_qtype & GENERAL) && (R->rd_user_list))
#define ACTIVE_SRD(R) ((R->rd_stat & RDUSED) && \
(R->rd_user_list != NULL) && \
(R->rd_qtype & SPECIFIC))
/* This is the structure that gets passed to the user daemon */
#define ULINESIZ 120 /* want a 128-char buffer */
struct u_d_msg {
int opcode;
int count;
char res_name[ULINESIZ];
};