OpenMPI  0.1.1
rcache_rb_mru.h
Go to the documentation of this file.
1 
2 /**
3  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
4  * University Research and Technology
5  * Corporation. All rights reserved.
6  * Copyright (c) 2004-2005 The University of Tennessee and The University
7  * of Tennessee Research Foundation. All rights
8  * reserved.
9  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
10  * University of Stuttgart. All rights reserved.
11  * Copyright (c) 2004-2005 The Regents of the University of California.
12  * All rights reserved.
13  * $COPYRIGHT$
14  *
15  * Additional copyrights may follow
16  *
17  * $HEADER$
18  */
19 /**
20  * @file
21  * Description of the Registration Cache framework
22  */
23 #ifndef MCA_RCACHE_RB_MRU_H
24 #define MCA_RCACHE_RB_MRU_H
25 #include "opal/mca/mca.h"
26 #include "rcache_rb.h"
27 
28 
29 
30 /*
31  * initialize the rb mru
32  */
33 int mca_rcache_rb_mru_init(mca_rcache_rb_module_t* rcache);
34 
35 /*
36  * insert an item in the rb mru
37  */
38 int mca_rcache_rb_mru_insert(
39  mca_rcache_rb_module_t* rcache,
41  );
42 
43 /*
44  * remove an item from the rb mru
45  */
46 int mca_rcache_rb_mru_delete(
47  mca_rcache_rb_module_t* rcache,
49  );
50 
51 int mca_rcache_rb_mru_touch(
52  mca_rcache_rb_module_t* rcache,
54  );
55 
56 #endif /* MCA_RCACHE_RB_MRU_H */
57 
Definition: mpool.h:44
Top-level interface for all MCA components.
Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana University Research and Techno...
Definition: rcache_rb.h:32