[Lldb-commits] [lldb] r184746 - Sync FreeBSD files to Linux equivalents, to reduce noise in diff
Ed Maste
emaste at freebsd.org
Mon Jun 24 08:09:18 PDT 2013
Author: emaste
Date: Mon Jun 24 10:09:18 2013
New Revision: 184746
URL: http://llvm.org/viewvc/llvm-project?rev=184746&view=rev
Log:
Sync FreeBSD files to Linux equivalents, to reduce noise in diff
- Sort functions in the same order
- Match whitespace
- Remove commetned out code
- Make filename in comments match filename
Modified:
lldb/trunk/source/Host/freebsd/Host.cpp
lldb/trunk/source/Plugins/Platform/FreeBSD/Makefile
lldb/trunk/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
lldb/trunk/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
Modified: lldb/trunk/source/Host/freebsd/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/freebsd/Host.cpp?rev=184746&r1=184745&r2=184746&view=diff
==============================================================================
--- lldb/trunk/source/Host/freebsd/Host.cpp (original)
+++ lldb/trunk/source/Host/freebsd/Host.cpp Mon Jun 24 10:09:18 2013
@@ -121,8 +121,8 @@ Host::GetEnvironment (StringList &env)
}
bool
-Host::GetOSVersion(uint32_t &major,
- uint32_t &minor,
+Host::GetOSVersion(uint32_t &major,
+ uint32_t &minor,
uint32_t &update)
{
struct utsname un;
@@ -193,7 +193,7 @@ GetFreeBSDProcessArgs (const ProcessInst
{
process_info.GetExecutableFile().SetFile(cstr, false);
- if (!(match_info_ptr == NULL ||
+ if (!(match_info_ptr == NULL ||
NameMatches (process_info.GetExecutableFile().GetFilename().GetCString(),
match_info_ptr->GetNameMatchType(),
match_info_ptr->GetProcessInfo().GetName())))
@@ -218,7 +218,7 @@ GetFreeBSDProcessArgs (const ProcessInst
return true;
}
}
- }
+ }
}
return false;
}
@@ -240,7 +240,7 @@ GetFreeBSDProcessUserAndGroup(ProcessIns
struct kinfo_proc proc_kinfo;
size_t proc_kinfo_size;
- if (process_info.ProcessIDIsValid())
+ if (process_info.ProcessIDIsValid())
{
int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID,
(int)process_info.GetProcessID() };
Modified: lldb/trunk/source/Plugins/Platform/FreeBSD/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/FreeBSD/Makefile?rev=184746&r1=184745&r2=184746&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/FreeBSD/Makefile (original)
+++ lldb/trunk/source/Plugins/Platform/FreeBSD/Makefile Mon Jun 24 10:09:18 2013
@@ -1,4 +1,4 @@
-##===- source/Plugins/Platform/Linux/Makefile --------------*- Makefile -*-===##
+##===- source/Plugins/Platform/FreeBSD/Makefile ------------*- Makefile -*-===##
#
# The LLVM Compiler Infrastructure
#
Modified: lldb/trunk/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp?rev=184746&r1=184745&r2=184746&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp (original)
+++ lldb/trunk/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp Mon Jun 24 10:09:18 2013
@@ -168,7 +168,7 @@ PlatformFreeBSD::ResolveExecutable (cons
if (IsHost())
{
- // If we have "ls" as the exe_file, resolve the executable loation based on
+ // If we have "ls" as the exe_file, resolve the executable location based on
// the current path variables
if (!resolved_exe_file.Exists())
{
@@ -179,9 +179,6 @@ PlatformFreeBSD::ResolveExecutable (cons
if (!resolved_exe_file.Exists())
resolved_exe_file.ResolveExecutableLocation ();
- // Resolve any executable within a bundle on MacOSX
- //Host::ResolveExecutableInBundle (resolved_exe_file);
-
if (resolved_exe_file.Exists())
error.Clear();
else
Modified: lldb/trunk/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp?rev=184746&r1=184745&r2=184746&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp (original)
+++ lldb/trunk/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp Mon Jun 24 10:09:18 2013
@@ -932,25 +932,25 @@ ProcessMonitor::Launch(LaunchArgs *args)
args->m_error.SetErrorToGenericError();
switch (WEXITSTATUS(status))
{
- case ePtraceFailed:
+ case ePtraceFailed:
args->m_error.SetErrorString("Child ptrace failed.");
break;
- case eDupStdinFailed:
+ case eDupStdinFailed:
args->m_error.SetErrorString("Child open stdin failed.");
break;
- case eDupStdoutFailed:
+ case eDupStdoutFailed:
args->m_error.SetErrorString("Child open stdout failed.");
break;
- case eDupStderrFailed:
+ case eDupStderrFailed:
args->m_error.SetErrorString("Child open stderr failed.");
break;
case eChdirFailed:
args->m_error.SetErrorString("Child failed to set working directory.");
break;
- case eExecFailed:
+ case eExecFailed:
args->m_error.SetErrorString("Child exec failed.");
break;
- default:
+ default:
args->m_error.SetErrorString("Child returned unknown exit status.");
break;
}
@@ -1458,19 +1458,6 @@ ProcessMonitor::WriteRegisterValue(lldb:
}
bool
-ProcessMonitor::ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
-{
- return false;
-}
-
-bool
-ProcessMonitor::WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
-{
- return false;
-}
-
-
-bool
ProcessMonitor::ReadGPR(lldb::tid_t tid, void *buf, size_t buf_size)
{
bool result;
@@ -1489,6 +1476,12 @@ ProcessMonitor::ReadFPR(lldb::tid_t tid,
}
bool
+ProcessMonitor::ReadRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
+{
+ return false;
+}
+
+bool
ProcessMonitor::WriteGPR(lldb::tid_t tid, void *buf, size_t buf_size)
{
bool result;
@@ -1507,6 +1500,12 @@ ProcessMonitor::WriteFPR(lldb::tid_t tid
}
bool
+ProcessMonitor::WriteRegisterSet(lldb::tid_t tid, void *buf, size_t buf_size, unsigned int regset)
+{
+ return false;
+}
+
+bool
ProcessMonitor::Resume(lldb::tid_t tid, uint32_t signo)
{
bool result;
More information about the lldb-commits
mailing list