pal_defs.h 405 B

1234567891011121314151617
  1. #ifndef PAL_DEFS_H
  2. #define PAL_DEFS_H
  3. /* (Linux-only) enable caching loaded binaries for optimizing process creation
  4. */
  5. #define CACHE_LOADED_BINARIES 0 /* default: disabled */
  6. /* statically allocate slab manager */
  7. #define STATIC_SLAB 1
  8. /* maximum length of URIs */
  9. #define URI_MAX 4096
  10. /* allow binding sockets to ANY addresses (e.g., 0.0.0.0:0) */
  11. #define ALLOW_BIND_ANY 1
  12. #endif /* PAL_DEFS_H */