GITLAB

Salvador Abreu / PaCCS

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • paccs
  • src
  • store.h
  • 965dadaa   initial commit from distribution version 0.90b Browse Code ยป
    Salvador Abreu
    2015-04-21 16:57:16 +0900  
store.h 273 Bytes
Edit Raw Blame History
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_ */