blob: f163c86c2fd917b8861b9031f23cd8b4c77462ff [file] [log] [blame]
/*
**********************************************************************
* Copyright (C) 1997-2001, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
*/
#include "umutex.h"
/* Initialize the global mutex only when we can use it. */
#if (ICU_USE_THREADS == 1)
static int GlobalMutexInitialize()
{
umtx_init( NULL );
return 0;
}
static int initializesGlobalMutex = GlobalMutexInitialize();
#endif /* ICU_USE_THREADS==1 */