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 / src / io / buffer / ncac-job.h < prev    next >
C/C++ Source or Header  |  2003-08-21  |  492b  |  21 lines

  1. #ifndef _NCAC_JOB_H
  2. #define _NCAC_JOB_H
  3.  
  4. /* average size of requests in extents */
  5. #define DELT_DISCARD_NUM 5
  6.  
  7. int NCAC_do_a_read_job(struct NCAC_req *ncac_req);
  8. int NCAC_do_a_write_job(struct NCAC_req *ncac_req);
  9.  
  10. int NCAC_do_a_bufread_job(struct NCAC_req *ncac_req);
  11. int NCAC_do_a_bufwrite_job(struct NCAC_req *ncac_req);
  12.  
  13. int NCAC_do_a_query_job(struct NCAC_req *ncac_req);
  14.  
  15. int NCAC_do_a_demote_job(struct NCAC_req *ncac_req);
  16.  
  17. int NCAC_do_a_sync_job(struct NCAC_req *ncac_req);
  18.  
  19.  
  20. #endif
  21.