blob: 253cbd85769ead2edaff459bc8bb4414733ed919 (
plain)
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
|
//
// Copyright 2016 Garrett D'Amore <garrett@damore.org>
//
// This software is supplied under the terms of the MIT License, a
// copy of which should be located in the distribution where this
// file was obtained (LICENSE.txt). A copy of the license may also be
// found online at https://opensource.org/licenses/MIT.
//
#ifndef CORE_DEFS_H
#define CORE_DEFS_H
#include <stdint.h>
// C compilers may get unhappy when named arguments are not used. While
// there are things like __attribute__((unused)) which are arguably
// superior, support for such are not universal.
#define NNI_ARG_UNUSED(x) ((void) x);
// These types are common but have names shared with user space.
typedef struct nng_socket * nni_socket_t;
typedef struct nng_pipe * nni_pipe_t;
typedef struct nng_msg * nni_msg_t;
typedef struct nng_socket nni_socket;
typedef struct nng_endpt nni_endpt;
typedef struct nng_pipe nni_pipe;
typedef struct nng_msg nni_msg;
// These are our own names.
typedef struct nni_transport nni_transport;
typedef struct nni_endpt_ops nni_endpt_ops;
typedef struct nni_pipe_ops nni_pipe_ops;
typedef struct nni_protocol nni_protocol;
typedef int nni_signal; // Turnstile/wakeup channel.
typedef uint64_t nni_time; // Absolute time (usec).
typedef int64_t nni_duration; // Relative time (usec).
// Some default timing things.
#define NNI_TIME_NEVER ((nni_time) -1)
#define NNI_TIME_ZERO ((nni_time) 0)
#define NNI_SECOND (1000000)
#endif // CORE_DEFS_H
|