citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 3ae4837c48bf2d1db662aaa355679d3890a169ad
parent 8d4eeac040f8548f4da26feb8eb6885af827b711
Author: Kyle Milz <kyle@0x30.net>
Date:   Fri, 19 Aug 2016 15:19:44 -0600

src: dont use pid_t

Diffstat:
Msrc/runtime_proc.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/runtime_proc.h b/src/runtime_proc.h @@ -25,8 +25,8 @@ public: const char *m_progname; const char *m_cwd; uint32_t m_pid; - pid_t m_ppid; - pid_t m_pgrp; + uint32_t m_ppid; + uint32_t m_pgrp; std::vector<TranslationUnit> m_tus; int m_tus_with_execs; private: