forked from OSchip/llvm-project
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 llvm-svn: 184746
This commit is contained in:
parent
428a6784b7
commit
5d34af358a
|
@ -1,4 +1,4 @@
|
|||
##===- source/Plugins/Platform/Linux/Makefile --------------*- Makefile -*-===##
|
||||
##===- source/Plugins/Platform/FreeBSD/Makefile ------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
|
|
|
@ -168,7 +168,7 @@ PlatformFreeBSD::ResolveExecutable (const FileSpec &exe_file,
|
|||
|
||||
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 (const FileSpec &exe_file,
|
|||
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
|
||||
|
|
|
@ -1457,19 +1457,6 @@ ProcessMonitor::WriteRegisterValue(lldb::tid_t tid, unsigned offset,
|
|||
return result;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
|
@ -1488,6 +1475,12 @@ ProcessMonitor::ReadFPR(lldb::tid_t tid, void *buf, size_t buf_size)
|
|||
return result;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
|
@ -1506,6 +1499,12 @@ ProcessMonitor::WriteFPR(lldb::tid_t tid, void *buf, size_t buf_size)
|
|||
return result;
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue