Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Native/Runtime/unix/PalRedhawkUnix.cpp2
-rw-r--r--src/Native/System.Private.CoreLib.Native/pal_threading.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Native/Runtime/unix/PalRedhawkUnix.cpp b/src/Native/Runtime/unix/PalRedhawkUnix.cpp
index 6d151657e..e69adbf31 100644
--- a/src/Native/Runtime/unix/PalRedhawkUnix.cpp
+++ b/src/Native/Runtime/unix/PalRedhawkUnix.cpp
@@ -308,7 +308,7 @@ public:
TimeSpecAdd(&endTime, milliseconds);
}
#else
-#error Don't know how to perfom timed wait on this platform
+#error Don't know how to perform timed wait on this platform
#endif
int st = 0;
diff --git a/src/Native/System.Private.CoreLib.Native/pal_threading.cpp b/src/Native/System.Private.CoreLib.Native/pal_threading.cpp
index 3f9f37276..e3c2dd797 100644
--- a/src/Native/System.Private.CoreLib.Native/pal_threading.cpp
+++ b/src/Native/System.Private.CoreLib.Native/pal_threading.cpp
@@ -28,7 +28,7 @@ extern "C" void CoreLibNative_LowLevelMutex_Release(LowLevelMutex *mutex)
// LowLevelMonitor
#if !(HAVE_MACH_ABSOLUTE_TIME || HAVE_PTHREAD_CONDATTR_SETCLOCK && HAVE_CLOCK_MONOTONIC)
-#error Don't know how to perfom timed wait on this platform
+#error Don't know how to perform timed wait on this platform
#endif
LowLevelMonitor::LowLevelMonitor(bool abortOnFailure, bool *successRef) : LowLevelMutex(abortOnFailure, successRef)