Make 'c' key work with threads as well.

This commit is contained in:
Hisham Muhammad
2017-09-14 17:10:39 -03:00
parent b9934ffa08
commit e3f65c8ec2
4 changed files with 6 additions and 2 deletions

View File

@ -172,6 +172,8 @@ typedef struct ProcessClass_ {
#define As_Process(this_) ((ProcessClass*)((this_)->super.klass))
#define Process_isChildOf(process_, pid_) (process_->tgid == pid_ || (process_->tgid == process_->pid && process_->ppid == pid_))
}*/
static int Process_getuid = -1;