pal_defs.h 493 B

1234567891011121314151617181920
  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. /* turn on the following option to trace heap memory leak */
  13. #define TRACE_HEAP_LEAK 0
  14. #endif /* PAL_DEFS_H */