diff options
Diffstat (limited to 'lldb/source/Host')
-rw-r--r-- | lldb/source/Host/common/Condition.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Host/common/Host.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Host/common/Mutex.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Host/macosx/Host.mm | 2 | ||||
-rw-r--r-- | lldb/source/Host/macosx/cfcpp/CFCReleaser.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lldb/source/Host/common/Condition.cpp b/lldb/source/Host/common/Condition.cpp index 4e93db766db..535afcb0439 100644 --- a/lldb/source/Host/common/Condition.cpp +++ b/lldb/source/Host/common/Condition.cpp @@ -66,7 +66,7 @@ Condition::Signal () //---------------------------------------------------------------------- // The Wait() function atomically blocks the current thread -// waiting on the owend condition variable, and unblocks the mutex +// waiting on the owned condition variable, and unblocks the mutex // specified by "mutex". The waiting thread unblocks only after // another thread calls Signal(), or Broadcast() with the same // condition variable, or if "abstime" is valid (non-NULL) this diff --git a/lldb/source/Host/common/Host.cpp b/lldb/source/Host/common/Host.cpp index 0492cbd360f..8d82097c7f4 100644 --- a/lldb/source/Host/common/Host.cpp +++ b/lldb/source/Host/common/Host.cpp @@ -662,7 +662,7 @@ Host::ResolveExecutableInBundle (FileSpec &file) bool Host::GetLLDBPath (PathType path_type, FileSpec &file_spec) { - // To get paths related to LLDB we get the path to the exectuable that + // To get paths related to LLDB we get the path to the executable that // contains this function. On MacOSX this will be "LLDB.framework/.../LLDB", // on linux this is assumed to be the "lldb" main executable. If LLDB on // linux is actually in a shared library (lldb.so??) then this function will diff --git a/lldb/source/Host/common/Mutex.cpp b/lldb/source/Host/common/Mutex.cpp index e038102e98c..8d617b6fc02 100644 --- a/lldb/source/Host/common/Mutex.cpp +++ b/lldb/source/Host/common/Mutex.cpp @@ -72,7 +72,7 @@ Mutex::Locker::Locker (pthread_mutex_t *mutex_ptr) : } //---------------------------------------------------------------------- -// Desstructor +// Destructor // // Unlocks any owned mutex object (if it is valid). //---------------------------------------------------------------------- diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index 8476b9886bb..a76ec805c19 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -55,7 +55,7 @@ public: // function, so we do it manually. auto_zone_register_thread(auto_zone()); #else - // On SnowLoepard and later we just call the thread registration function. + // On SnowLeopard and later we just call the thread registration function. objc_registerThreadWithCollector(); #endif } diff --git a/lldb/source/Host/macosx/cfcpp/CFCReleaser.h b/lldb/source/Host/macosx/cfcpp/CFCReleaser.h index 2aa13506fc6..67dd2ead579 100644 --- a/lldb/source/Host/macosx/cfcpp/CFCReleaser.h +++ b/lldb/source/Host/macosx/cfcpp/CFCReleaser.h @@ -23,7 +23,7 @@ // is designed to mimic the std::auto_ptr<T> class and has all of the // same functions. The one thing to watch out for is the // CFCReleaser<T>::release() function won't actually CFRelease any owned -// pointer, it is designed to relinquish ownwership of the pointer just +// pointer, it is designed to relinquish ownership of the pointer just // like std:auto_ptr<T>::release() does. //---------------------------------------------------------------------- template <class T> |