By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2110
Collapse All | Expand All

(-)kicker/applets/naughty/NaughtyProcessMonitor.cpp.orig (+9 lines)
Lines 409-420 Link Here
409
  d->cacheLoadMap_.clear () ;
409
  d->cacheLoadMap_.clear () ;
410
  d->uidMap_.clear () ;
410
  d->uidMap_.clear () ;
411
  for (i = 0; i < nentries; i++) {
411
  for (i = 0; i < nentries; i++) {
412
#ifdef __OpenBSD__
413
      l << (unsigned long) kp[i].p_pid ;
414
      d->cacheLoadMap_.insert (kp[i].p_pid,
415
                              (kp[i].p_uticks +
416
                               kp[i].p_sticks)) ;
417
      d->uidMap_.insert (kp[i].p_pid,
418
                        kp[i].p_uid) ;
419
#else
412
      l << (unsigned long) kp[i].kp_proc.p_pid ;
420
      l << (unsigned long) kp[i].kp_proc.p_pid ;
413
      d->cacheLoadMap_.insert (kp[i].kp_proc.p_pid,
421
      d->cacheLoadMap_.insert (kp[i].kp_proc.p_pid,
414
			       (kp[i].kp_proc.p_uticks + 
422
			       (kp[i].kp_proc.p_uticks + 
415
				kp[i].kp_proc.p_sticks)) ;
423
				kp[i].kp_proc.p_sticks)) ;
416
      d->uidMap_.insert (kp[i].kp_proc.p_pid,
424
      d->uidMap_.insert (kp[i].kp_proc.p_pid,
417
			 kp[i].kp_eproc.e_ucred.cr_uid) ;
425
			 kp[i].kp_eproc.e_ucred.cr_uid) ;
426
#endif
418
  }
427
  }
419
428
420
  free (kp) ;
429
  free (kp) ;

Return to bug 2110