Skip to content
Snippets Groups Projects
Commit ed42240d authored by Steven Murray's avatar Steven Murray
Browse files

Removed the unused C structures acctstage, accstage2 and accstage64

parent dce44da6
Branches
Tags
No related merge requests found
......@@ -137,121 +137,6 @@ struct acctrfio64 { /* accounting record for rfio64 software */
#define MAXFSEQ 15
#endif
struct acctstage { /* accounting record for stage software */
int subtype;
uid_t uid;
gid_t gid;
int reqid;
int req_type;
int retryn; /* retry number */
int exitcode;
union {
char clienthost[CA_MAXHOSTNAMELEN+1];
struct {
char poolname[CA_MAXPOOLNAMELEN+1];
char t_or_d;
off_t actual_size;
int nbaccesses;
union {
struct { /* tape specific info */
char dgn[CA_MAXDGNLEN+1];
char fseq[CA_MAXFSEQLEN+1];
char vid[CA_MAXVIDLEN+1];
char tapesrvr[CA_MAXHOSTNAMELEN+1];
} t;
struct { /* info for disk file stageing */
char xfile[CA_MAXHOSTNAMELEN+MAXPATH+1];
} d;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
} m;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
u_signed64 fileid;
} h;
} u1;
} s;
} u2;
};
struct acctstage2 { /* accounting record for stage software */
int subtype;
uid_t uid;
gid_t gid;
int reqid;
int req_type;
int retryn; /* retry number */
int exitcode;
union {
char clienthost[CA_MAXHOSTNAMELEN+1];
struct {
char poolname[CA_MAXPOOLNAMELEN+1];
char t_or_d;
off_t actual_size;
time_t c_time;
int nbaccesses;
union {
struct { /* tape specific info */
int side;
char dgn[CA_MAXDGNLEN+1];
char fseq[CA_MAXFSEQLEN+1];
char vid[CA_MAXVIDLEN+1];
char tapesrvr[CA_MAXHOSTNAMELEN+1];
} t;
struct { /* info for disk file stageing */
char xfile[CA_MAXHOSTNAMELEN+MAXPATH+1];
} d;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
} m;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
u_signed64 fileid;
} h;
} u1;
} s;
} u2;
};
struct acctstage64 { /* accounting record for stage 64BITS software */
int subtype;
uid_t uid;
gid_t gid;
int reqid;
int req_type;
int retryn; /* retry number */
int exitcode;
union {
char clienthost[CA_MAXHOSTNAMELEN+1];
struct {
char poolname[CA_MAXPOOLNAMELEN+1];
char t_or_d;
u_signed64 actual_size;
TIME_T c_time;
int nbaccesses;
union {
struct { /* tape specific info */
int side;
char dgn[CA_MAXDGNLEN+1];
char fseq[CA_MAXFSEQLEN+1];
char vid[CA_MAXVIDLEN+1];
char tapesrvr[CA_MAXHOSTNAMELEN+1];
} t;
struct { /* info for disk file stageing */
char xfile[CA_MAXHOSTNAMELEN+MAXPATH+1];
} d;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
} m;
struct { /* info for disk file stageing */
char xfile[STAGE_MAX_HSMLENGTH+1];
u_signed64 fileid;
} h;
} u1;
} s;
} u2;
};
/* subtypes for stage accounting records */
#define STGSTART 0 /* stgdaemon started */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment