proc: fix: Call wg.Done in loadProcessInformation on OSX

This commit is contained in:
Derek Parker 2015-10-04 12:07:22 -07:00
parent e509c3ce36
commit f2ae6a27cd

@ -319,6 +319,7 @@ func (dbp *Process) trapWait(pid int) (*Thread, error) {
}
func (dbp *Process) loadProcessInformation(wg *sync.WaitGroup) {
wg.Done()
}
func (dbp *Process) wait(pid, options int) (int, *sys.WaitStatus, error) {