Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Unified Diff: source/common/cmutex.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/common/cmemory.h ('k') | source/common/common.vcxproj » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
-
« no previous file with comments | « source/common/cmemory.h ('k') | source/common/common.vcxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698