rofisys 0.3.1

This system crate provides Rust language bindings (via the use of Bindgen) to the Rust-OFI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef ROFI_CONTEXT_H
#define ROFI_CONTEXT_H

int ctx_init(void);
unsigned long ctx_new(void);
struct fi_context2 *ctx_get(const unsigned long);
int ctx_rm(unsigned long);
int ctx_cleanup(void);
int ctx_free(void);
int ctx_get_lock(void);
int ctx_release_lock(void);

#endif