mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 07:57:38 -04:00
Mate is a lite desktop forked from gnome2. Most of the work is done by Jeremy Messenger (mezz@). The only thing I did was update a few ports to later 1.6 release and attempting to keep up with ports infra changes. Resulting bugs are all mine. Mate is a sort of replacement for Gnome 2. So people wanting to keep a Gnome 2 like desktop should switch. Gnome 2 will be replaced by Gnome 3 in the near future. This switch will be announce with a transition time so people have more time to switch if they haven't already. This release was made possible by everyone that send friendly pokes to keep mate on my mind. Approved by: portmgr (bapt)
46 lines
1 KiB
C
46 lines
1 KiB
C
--- src/gpm-load.c.orig 2012-07-28 22:37:47.000000000 -0500
|
|
+++ src/gpm-load.c 2012-07-28 22:39:40.000000000 -0500
|
|
@@ -33,6 +33,10 @@
|
|
#include <kstat.h>
|
|
#include <sys/sysinfo.h>
|
|
#endif
|
|
+#if defined(__FreeBSD__)
|
|
+#include <sys/resource.h>
|
|
+#include <sys/sysctl.h>
|
|
+#endif
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif /* HAVE_UNISTD_H */
|
|
@@ -151,6 +155,32 @@
|
|
return FALSE;
|
|
}
|
|
|
|
+#elif defined(__FreeBSD__)
|
|
+
|
|
+/**
|
|
+ * gpm_load_get_cpu_values:
|
|
+ * @cpu_idle: The idle time reported by the CPU
|
|
+ * @cpu_total: The total time reported by the CPU
|
|
+ * Return value: Success of reading of the kern.cp_time sysctl.
|
|
+ **/
|
|
+static gboolean
|
|
+gpm_load_get_cpu_values (long unsigned *cpu_idle, long unsigned *cpu_total)
|
|
+{
|
|
+ long cpts[CPUSTATES];
|
|
+ size_t length;
|
|
+
|
|
+ length = sizeof (cpts);
|
|
+ if (sysctlbyname ("kern.cp_time", cpts, &length, NULL, 0)) {
|
|
+ return FALSE;
|
|
+ }
|
|
+
|
|
+ *cpu_idle = (unsigned long) cpts[CP_IDLE];
|
|
+ *cpu_total = (unsigned long) (cpts[CP_USER] + cpts[CP_NICE] + \
|
|
+ cpts[CP_SYS] + cpts[CP_IDLE] + cpts[CP_INTR]);
|
|
+
|
|
+ return TRUE;
|
|
+}
|
|
+
|
|
#else
|
|
|
|
/**
|