/**
*******************************************************************************
- * Copyright (C) 2001-2006, International Business Machines Corporation and *
+ * Copyright (C) 2001-2012, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
EventListener::~EventListener() {}
UOBJECT_DEFINE_RTTI_IMPLEMENTATION(EventListener)
+static UMutex notifyLock = U_MUTEX_INITIALIZER;
+
ICUNotifier::ICUNotifier(void)
-: notifyLock(0), listeners(NULL)
+: listeners(NULL)
{
- umtx_init(¬ifyLock);
}
ICUNotifier::~ICUNotifier(void) {
delete listeners;
listeners = NULL;
}
- umtx_destroy(¬ifyLock);
}