Index: source/common/cmutex.h |
diff --git a/source/common/cmutex.h b/source/common/cmutex.h |
deleted file mode 100644 |
index a3814dd3d36748efe5b616df1cb302719b0aa74c..0000000000000000000000000000000000000000 |
--- a/source/common/cmutex.h |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-/* |
-********************************************************************** |
-* Copyright (C) 2013, International Business Machines |
-* Corporation and others. All Rights Reserved. |
-********************************************************************** |
-* |
-* File cmutex.h |
-* |
-* Minimal plain C declarations for ICU mutex functions. |
-* This header provides a transition path for plain C files that |
-* formerly included mutex.h, which is now a C++ only header. |
-* |
-* This header should not be used for new code. |
-* |
-* C++ files should include umutex.h, not this header. |
-* |
-*/ |
- |
-#ifndef __CMUTEX_H__ |
-#define __CMUTEX_H__ |
- |
-typedef struct UMutex UMutex; |
- |
- |
-/* Lock a mutex. |
- * @param mutex The given mutex to be locked. Pass NULL to specify |
- * the global ICU mutex. Recursive locks are an error |
- * and may cause a deadlock on some platforms. |
- */ |
-U_INTERNAL void U_EXPORT2 umtx_lock(UMutex* mutex); |
- |
-/* Unlock a mutex. |
- * @param mutex The given mutex to be unlocked. Pass NULL to specify |
- * the global ICU mutex. |
- */ |
-U_INTERNAL void U_EXPORT2 umtx_unlock (UMutex* mutex); |
- |
-#endif |
- |