tsrm_config_common.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef TSRM_CONFIG_COMMON_H
  2. #define TSRM_CONFIG_COMMON_H
  3. #ifndef __CYGWIN__
  4. # ifdef _WIN32
  5. # define TSRM_WIN32
  6. # endif
  7. #endif
  8. #ifdef TSRM_WIN32
  9. # include "tsrm_config.w32.h"
  10. #else
  11. # include <tsrm_config.h>
  12. # include <sys/param.h>
  13. #endif
  14. #if HAVE_ALLOCA_H && !defined(_ALLOCA_H)
  15. # include <alloca.h>
  16. #endif
  17. /* AIX requires this to be the first thing in the file. */
  18. #ifndef __GNUC__
  19. # ifndef HAVE_ALLOCA_H
  20. # ifdef _AIX
  21. #pragma alloca
  22. # else
  23. # ifndef alloca /* predefined by HP cc +Olibcalls */
  24. # ifndef NETWARE
  25. char *alloca ();
  26. # endif
  27. # endif
  28. # endif
  29. # endif
  30. #endif
  31. #if HAVE_UNISTD_H
  32. #include <unistd.h>
  33. #endif
  34. #if HAVE_LIMITS_H
  35. #include <limits.h>
  36. #endif
  37. #ifndef MAXPATHLEN
  38. # ifdef PATH_MAX
  39. # define MAXPATHLEN PATH_MAX
  40. # elif defined(MAX_PATH)
  41. # define MAXPATHLEN MAX_PATH
  42. # else
  43. # define MAXPATHLEN 256
  44. # endif
  45. #endif
  46. #if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2))
  47. # define TSRM_ALLOCA_MAX_SIZE 4096
  48. # define TSRM_ALLOCA_FLAG(name) \
  49. int name;
  50. # define tsrm_do_alloca_ex(size, limit, use_heap) \
  51. ((use_heap = ((size) > (limit))) ? malloc(size) : alloca(size))
  52. # define tsrm_do_alloca(size, use_heap) \
  53. tsrm_do_alloca_ex(size, TSRM_ALLOCA_MAX_SIZE, use_heap)
  54. # define tsrm_free_alloca(p, use_heap) \
  55. do { if (use_heap) free(p); } while (0)
  56. #else
  57. # define TSRM_ALLOCA_FLAG(name)
  58. # define tsrm_do_alloca(p, use_heap) malloc(p)
  59. # define tsrm_free_alloca(p, use_heap) free(p)
  60. #endif
  61. #endif /* TSRM_CONFIG_COMMON_H */