-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlibfabric.c
64 lines (45 loc) · 1.16 KB
/
libfabric.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Copyright (c) 2017-2018 Mellanox Technologies Ltd. ALL RIGHTS RESERVED.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "generic.h"
void set_default_args() {
}
void special_usage(char *cmd) {
}
int special_process_args(char *optarg) {
return 0;
}
int init_ctx() {
}
int connect_eps() {
}
void cleanup_ctx() {
}
void *init_sreqs(int num_sreqs, void *data_buf, int msg_sz, int tag) {
}
void *init_rreqs(int num_rreqs, void *data_buf, int msg_sz, int tag) {
}
void cleanup_sreqs(void *sreqs) {
}
void cleanup_rreqs(void *rreqs) {
}
void nonblocking_send(void* data_buf, int msg_sz, struct thread_info *tinfo, int tag, void *sreqs, int idx) {
}
void nonblocking_recv(void* data_buf, int msg_sz, struct thread_info *tinfo, int tag, void *rreqs, int idx) {
}
void blocking_send(void* data_buf, int msg_sz, struct thread_info *tinfo, int tag){
}
void blocking_recv(void* data_buf, int msg_sz, struct thread_info *tinfo, int tag){
}
void wait_all_sreqs(void *sreqs, struct thread_info *tinfo, int num_sreqs){
}
void wait_all_rreqs(void *rreqs, struct thread_info *tinfo, int num_rreqs){
}
int main(int argc, char *argv[]) {
}