Use POSIX pid_t and not lldb::pid_t.
authorDavide Italiano <davide@freebsd.org>
Sun, 22 Mar 2015 23:43:58 +0000 (23:43 +0000)
committerDavide Italiano <davide@freebsd.org>
Sun, 22 Mar 2015 23:43:58 +0000 (23:43 +0000)
commitcd9f7b84bbb5a09fbd2d2b1d011ea9dce4666ba5
treed9767620f8a12d55a8fd146e7d1c889b9f86fe9d
parent7572caf4852b5a77fa6742414d4773ec7895244b
Use POSIX pid_t and not lldb::pid_t.

The latter is uint64_t beacuse lldb supports arbitrary pid/platforms
but in this case we're using it as return value for fork() which might
return -1 to the parent in case the syscall fails.

Differential Revision:  http://reviews.llvm.org/D8491

llvm-svn: 232926
lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp