965dadaa
Salvador Abreu
initial commit fr...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _STORE_H_
#define _STORE_H_ 1
typedef _fd_value_core *_fd_store;
/* How to obtain an fd_value from the store contents. */
#ifdef INLINE_DOMAINS
#define SVALUE(s) (s)
#else
#define SVALUE(s) (&(s))
#endif
extern __thread _fd_store store;
#endif /* _STORE_H_ */
|