* Copyright (C) 1995-2005, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: log.c,v 1.21 2005-01-15 19:47:13 adam Exp $
+ * $Id: log.c,v 1.22 2005-04-29 10:36:05 heikki Exp $
*/
/**
void yaz_log_init_level (int level)
{
+ if (!mutex_init_flag)
+ init_mutex();
if ( (l_level & YLOG_FLUSH) != (level & YLOG_FLUSH) )
{
l_level = level;
static int define_module_bit(const char *name)
{
int i;
+ if (!mutex_init_flag)
+ init_mutex();
for (i = 0; mask_names[i].name; i++)
;
if ( (i>=MAX_MASK_NAMES) || (next_log_bit >= 1<<31 ))
int i;
char clean[255];
char *n = clean_name(name, strlen(name), clean, sizeof(clean));
+ if (!mutex_init_flag)
+ init_mutex();
for (i = 0; mask_names[i].name; i++)
if (0==strcmp(n,mask_names[i].name))
{
* Copyright (C) 1995-2005, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: nmem.c,v 1.14 2005-01-21 09:23:27 adam Exp $
+ * $Id: nmem.c,v 1.15 2005-04-29 10:36:05 heikki Exp $
*/
/**
YAZ_EXPORT void nmem_mutex_create(NMEM_MUTEX *p)
{
- if (!log_level_initialized)
- {
- log_level = yaz_log_module_level("nmem");
- log_level_initialized = 1;
- }
-
if (!*p)
{
*p = (NMEM_MUTEX) malloc (sizeof(**p));
pth_mutex_init (&(*p)->m_handle);
#endif
}
+ if (!log_level_initialized)
+ {
+ log_level_initialized = 1;
+ log_level = yaz_log_module_level("nmem");
+ }
+
}
YAZ_EXPORT void nmem_mutex_enter(NMEM_MUTEX p)