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-lru.h < prev    next >
C/C++ Source or Header  |  2004-09-21  |  316b  |  11 lines

  1. #ifndef __NCAC_LRU_H_
  2. #define __NCAC_LRU_H_
  3.  
  4. void LRU_add_cache_item(struct cache_stack *cache,struct extent
  5. *extent);
  6. void LRU_remove_cache_item(struct cache_stack *cache, struct extent
  7. *extent);
  8. int LRU_shrink_cache(struct cache_stack *cache, unsigned int expected,
  9.                 unsigned int *shrinked);
  10. #endif
  11.