| 119 | |
| 120 | |
| 121 | static int buf_init(void) |
| 122 | { |
| 123 | LM_DBG("initializing...\n"); |
| 124 | log_buf = (char*)pkg_malloc((xlog_buf_size+1)*sizeof(char)); |
| 125 | if(log_buf==NULL) |
| 126 | { |
| 127 | LM_ERR("no pkg memory left\n"); |
| 128 | return -1; |
| 129 | } |
| 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | |
| 134 | int init_xlog(void) |