[Lldb-commits] [PATCH] D14388: Use lldb::pid_t instead of pid_t.
Chaoren Lin via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 5 10:39:43 PST 2015
chaoren created this revision.
chaoren added a reviewer: granata.enrico.
chaoren added a subscriber: lldb-commits.
http://reviews.llvm.org/D14388
Files:
source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.h
source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm
Index: source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm
===================================================================
--- source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm
+++ source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.mm
@@ -47,10 +47,10 @@
- (NSUInteger) state;
- (BOOL) shutdownWithError:(NSError **)error;
- (NSUUID *) UDID;
-- (pid_t) spawnWithPath:(NSString *)path options:(NSDictionary *)options terminationHandler:(void (^)(int status)) terminationHandler error:(NSError **)error;
+- (lldb::pid_t) spawnWithPath:(NSString *)path options:(NSDictionary *)options terminationHandler:(void (^)(int status)) terminationHandler error:(NSError **)error;
@end
-CoreSimulatorSupport::Process::Process (pid_t p) :
+CoreSimulatorSupport::Process::Process (lldb::pid_t p) :
m_pid (p),
m_error ()
{
@@ -62,7 +62,7 @@
{
}
-CoreSimulatorSupport::Process::Process (pid_t p, Error error) :
+CoreSimulatorSupport::Process::Process (lldb::pid_t p, Error error) :
m_pid (p),
m_error (error)
{
@@ -661,7 +661,7 @@
NSError* nserror;
- pid_t pid = [m_dev spawnWithPath: [NSString stringWithUTF8String: launch_info.GetExecutableFile().GetPath().c_str()]
+ lldb::pid_t pid = [m_dev spawnWithPath: [NSString stringWithUTF8String: launch_info.GetExecutableFile().GetPath().c_str()]
options: options
terminationHandler: nil
error: &nserror];
Index: source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.h
===================================================================
--- source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.h
+++ source/Plugins/Platform/MacOSX/PlatformiOSSimulatorCoreSimulatorSupport.h
@@ -36,7 +36,7 @@
class Process
{
public:
- pid_t
+ lldb::pid_t
GetPID ()
{
return m_pid;
@@ -54,13 +54,13 @@
}
private:
- Process (pid_t p);
+ Process (lldb::pid_t p);
Process(lldb_private::Error error);
- Process (pid_t p, lldb_private::Error error);
+ Process (lldb::pid_t p, lldb_private::Error error);
- pid_t m_pid;
+ lldb::pid_t m_pid;
lldb_private::Error m_error;
friend class Device;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14388.39384.patch
Type: text/x-patch
Size: 2427 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151105/b6cc040a/attachment.bin>
More information about the lldb-commits
mailing list