comparison src/os/unix/ngx_freebsd_init.c @ 436:9549fc9508e5

nginx-0.0.11-2004-09-23-10:32:00 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 23 Sep 2004 06:32:00 +0000
parents 11362a3e3911
children 470270fa84d2
comparison
equal deleted inserted replaced
435:5cdc4838d4e8 436:9549fc9508e5
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 = "J"; 69 _malloc_options = "JAV";
70 #else 70 #else
71 malloc_options = "J"; 71 malloc_options = "JAV";
72 #endif 72 #endif
73 73
74 #endif 74 #endif
75 } 75 }
76 76