pal_defs.h 549 B

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