openbsd: better handling of p_wchan

This commit is contained in:
Antoine Jacoutot
2014-02-01 19:09:21 +01:00
parent ecbfade528
commit c99ceeaa65

View File

@@ -76,12 +76,14 @@ glibtop_get_proc_kernel_p (glibtop *server,
return; return;
} }
if (pinfo->p_wmesg)
g_strlcpy(buf->wchan, pinfo->p_wmesg, sizeof(buf->wchan));
buf->min_flt = pinfo[0].p_uru_minflt; buf->min_flt = pinfo[0].p_uru_minflt;
buf->maj_flt = pinfo[0].p_uru_majflt; buf->maj_flt = pinfo[0].p_uru_majflt;
buf->nwchan = pinfo[0].p_wchan;
if (pinfo[0].p_wchan && pinfo[0].p_wmesg)
g_strlcpy(buf->wchan, pinfo[0].p_wmesg,
sizeof buf->wchan);
buf->flags |= (_glibtop_sysdeps_proc_kernel_wchan buf->flags |= (_glibtop_sysdeps_proc_kernel_wchan
| _glibtop_sysdeps_proc_kernel_pstats); | _glibtop_sysdeps_proc_kernel_pstats);
} }