summaryrefslogtreecommitdiff
path: root/src/procproperties.cpp
AgeCommit message (Collapse)AuthorFilesLines
2019-04-29Use g_date_time_format instead of filter_daterbuj1-1/+0
https://developer.gnome.org/glib/stable/glib-GDateTime.html#g-date-time-format
2019-04-28Add disk IO on process inforbuj1-0/+11
Based on GNOME/gnome-system-monitor@60a787b
2019-04-17Use g_format_size or g_format_size_fullrbuj1-1/+1
- IEC units for RAM - SI units for storage and network
2018-02-09avoid deprecated GtkStockPablo Barciela1-1/+1
2016-03-01fix segfault on view mode change with process properties openmonsta1-5/+6
from https://git.gnome.org/browse/gnome-system-monitor/commit/?id=76545e553c620d9b3437456bb4dbffa355c59816
2016-03-01process properties: show cgroups + show N/A when selinux isn't setmonsta1-1/+2
from: https://git.gnome.org/browse/gnome-system-monitor/commit/?id=f3879a89f9bcc3e96b009c0033accb461c0672ac https://git.gnome.org/browse/gnome-system-monitor/commit/?id=7484244ea470690e52dd5b3ced0ff36917000355
2016-01-11drop GTK+2 code and --with-gtk build optionMonsta1-10/+2
2015-12-01GTK3: don't use deprecated gtk_{v/h}-boxWolfgang Ulbrich1-0/+5
2015-12-01GTK3: Drop use of deprecated treeview API. gtk_tree_view_set_rules_hintWolfgang Ulbrich1-0/+2
taken from: https://git.gnome.org/browse/gnome-system-monitor/commit/?id=7fefa84
2015-12-01process properties: use proper format for "CPU time" propertymonsta1-19/+1
it should be the same as in "CPU time" column of process table now adapted from https://git.gnome.org/browse/gnome-system-monitor/commit/?id=3c1f17877f95fcac7f5d437739305e245af7ba8b
2015-12-01process properties: use proper translatable date for "Started" propertymonsta1-1/+2
it should be the same as in "Started" column of process table now from https://git.gnome.org/browse/gnome-system-monitor/commit/?id=493b93ddf6bfb772769ca6942bf07deaac8e94bc
2015-06-27procproperties: Fix on NetBSDOBATA Akio1-2/+2
On NetBSD, HZ tick can be retrieved same as OpenBSD.
2014-12-19OpenBSD: use G_N_ELEMENTS instead of nitemsinfirit1-1/+1
nitems is never guaranteed to be defined in sys/params.h as it is meant to be defined within a protected ifdef __KERNEL conditional. Use G_N_ELEMENTS from GLib which is the proper way of doing this. Taken from GSM commit: a9972b6a45b490fd316a1a536115baca465e3ae6 From: Antoine Jacoutot <[email protected]>
2014-12-19procproperties: unbreak on OpenBSDinfirit1-0/+17
The asm/param.h header is only found on Linux. On OpenBSD, the HZ tick is not defined in any header but can be retrieved from the running kernel using the sysctl(3) interface. Taken from GSM commit: 94be681c159b56ad42afb13c3e18d59be4422558 From: Antoine Jacoutot <[email protected]>
2014-12-19Add a Process Properties dialog in MATE System Monitorinfirit1-0/+297
Taken from GSM commit: 72546b7f3346fc0647a433529f3292050f15278f From: Krishnan Parthasarathi <[email protected]> Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=543347