comparison src/os/unix/ngx_freebsd_init.c @ 437:470270fa84d2

nginx-0.0.12-2004-09-23-20:39:34 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 23 Sep 2004 16:39:34 +0000
parents 9549fc9508e5
children da8c5707af39
comparison
equal deleted inserted replaced
436:9549fc9508e5 437:470270fa84d2
64 void ngx_debug_init() 64 void ngx_debug_init()
65 { 65 {
66 #if (NGX_DEBUG && !NGX_NO_DEBUG_MALLOC) 66 #if (NGX_DEBUG && !NGX_NO_DEBUG_MALLOC)
67 67
68 #if __FreeBSD_version >= 500014 68 #if __FreeBSD_version >= 500014
69 _malloc_options = "JAV"; 69 _malloc_options = "J";
70 #else 70 #else
71 malloc_options = "JAV"; 71 malloc_options = "J";
72 #endif 72 #endif
73 73
74 #endif 74 #endif
75 } 75 }
76 76