Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / volser / lockdata.h
CommitLineData
805e021f
CE
1/*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
4 *
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
8 */
9
10#ifndef _LOCKDATA_
11#define _LOCKDATA_ 1
12
13#define ZERO 2147617029 /*to be replaced by 0L */
14#define N_SECURITY_OBJECTS 1
15
16
17struct aqueue {
18 char name[VOLSER_MAXVOLNAME]; /* related to max volname allowed in the vldb */
19 afs_int32 ids[3];
20 afs_int32 copyDate[3];
21 int isValid[3];
22 struct aqueue *next;
23};
24
25struct qHead {
26 int count;
27 struct aqueue *next;
28};
29
30#endif /* _LOCKDATA_ */