home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / pvfs2 / orangefs-2.8.3-20110323.tar.gz / orangefs-2.8.3-20110323.tar / orangefs / include / pvfs2-dist-simple-stripe.h < prev    next >
C/C++ Source or Header  |  2005-06-29  |  705b  |  34 lines

  1. /*
  2.  * (C) 2002 Clemson University.
  3.  *
  4.  * See COPYING in top-level directory.
  5.  */       
  6.  
  7. #ifndef __PVFS_DIST_SIMPLE_STRIPE_H
  8. #define __PVFS_DIST_SIMPLE_STRIPE_H
  9.  
  10. #include "pvfs2-types.h"
  11.  
  12. /* Identifier to use when looking up this distribution */
  13. #define PVFS_DIST_SIMPLE_STRIPE_NAME "simple_stripe"
  14. #define PVFS_DIST_SIMPLE_STRIPE_NAME_SIZE 14
  15.  
  16. #define PVFS_DIST_SIMPLE_STRIPE_DEFAULT_STRIP_SIZE 65536
  17.  
  18. /* simple stripe distribution parameters */
  19. struct PVFS_simple_stripe_params_s {
  20.     PVFS_size strip_size;
  21. };
  22. typedef struct PVFS_simple_stripe_params_s PVFS_simple_stripe_params;
  23.  
  24. #endif
  25.  
  26. /*
  27.  * Local variables:
  28.  *  c-indent-level: 4
  29.  *  c-basic-offset: 4
  30.  * End:
  31.  *
  32.  * vim: ts=8 sts=4 sw=4 expandtab
  33.  */
  34.