ps: removed stripping of prefixes off wchan data

resolves Red Hat Bugzilla #1322111
This commit is contained in:
Jan Rybar 2016-11-22 16:58:14 +01:00
parent 3afaccc376
commit fc7f60a6bc

View File

@ -46,11 +46,7 @@ const char * lookup_wchan (int pid) {
// lame ppc64 has a '.' in front of every name
if (*ret=='.') ret++;
switch (*ret){
case 's': if(!strncmp(ret, "sys_", 4)) ret += 4; break;
case 'd': if(!strncmp(ret, "do_", 3)) ret += 3; break;
case '_': while(*ret=='_') ret++; break;
default : break;
}
while(*ret=='_') ret++;
return ret;
}