diff options
Diffstat (limited to 'lldb/tools/debugserver/source')
| -rw-r--r-- | lldb/tools/debugserver/source/MacOSX/MachProcess.mm | 4 | ||||
| -rw-r--r-- | lldb/tools/debugserver/source/RNBServices.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lldb/tools/debugserver/source/MacOSX/MachProcess.mm b/lldb/tools/debugserver/source/MacOSX/MachProcess.mm index 95565041e94..2703271ee99 100644 --- a/lldb/tools/debugserver/source/MacOSX/MachProcess.mm +++ b/lldb/tools/debugserver/source/MacOSX/MachProcess.mm @@ -1486,7 +1486,7 @@ bool MachProcess::Detach() { // Resume our task m_task.Resume(); - // NULL our task out as we have already retored all exception ports + // NULL our task out as we have already restored all exception ports m_task.Clear(); // Clear out any notion of the process we once were @@ -1797,7 +1797,7 @@ bool MachProcess::DisableBreakpoint(nub_addr_t addr, bool remove) { break_op_size) { bool verify = false; if (bp->IsEnabled()) { - // Make sure we have the a breakpoint opcode exists at this address + // Make sure a breakpoint opcode exists at this address if (memcmp(curr_break_op, break_op, break_op_size) == 0) { break_op_found = true; // We found a valid breakpoint opcode at this address, now restore diff --git a/lldb/tools/debugserver/source/RNBServices.cpp b/lldb/tools/debugserver/source/RNBServices.cpp index 9f90f349f3a..b2f4910f885 100644 --- a/lldb/tools/debugserver/source/RNBServices.cpp +++ b/lldb/tools/debugserver/source/RNBServices.cpp @@ -80,7 +80,7 @@ int GetProcesses(CFMutableArrayRef plistMutableArray, bool all_users) { ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_PID_KEY, pidCFNumber.get()); - // Set the a boolean to indicate if this is the front most + // Set a boolean to indicate if this is the front most ::CFDictionarySetValue(appInfoDict.get(), DTSERVICES_APP_FRONTMOST_KEY, kCFBooleanFalse); @@ -169,7 +169,7 @@ int ListApplications(std::string &plist, bool opt_runningApps, pidCFNumber.get()); } - // Set the a boolean to indicate if this is the front most + // Set a boolean to indicate if this is the front most if (sbsFrontAppID.get() && displayIdentifier && (::CFStringCompare(sbsFrontAppID.get(), displayIdentifier, 0) == kCFCompareEqualTo)) |

