Skip to content
Permalink
1139b72d5e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (18 sloc) 565 Bytes
/*
* (C) 2001 Clemson University and The University of Chicago
*
*/
#ifndef __MIRROR_H
#define __MIRROR_H
enum MIRROR_MODE_t {
BEGIN_MIRROR_MODE = 100,
NO_MIRRORING = 100,
MIRROR_ON_IMMUTABLE = 200,
END_MIRROR_MODE = 200
};
typedef enum MIRROR_MODE_t MIRROR_MODE;
#define USER_PVFS2_MIRROR_HANDLES "user.pvfs2.mirror.handles"
#define USER_PVFS2_MIRROR_COPIES "user.pvfs2.mirror.copies"
#define USER_PVFS2_MIRROR_STATUS "user.pvfs2.mirror.status"
#define USER_PVFS2_MIRROR_MODE "user.pvfs2.mirror.mode"
#endif /* __MIRROR_H */