1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

Merge OpenBSD patches from ports

This commit is contained in:
Toni Spets 2009-06-03 09:16:23 +03:00
parent 6994caa18b
commit 09ac517343
2 changed files with 9 additions and 0 deletions

View File

@ -56,6 +56,10 @@
#include <net80211/ieee80211_ioctl.h> #include <net80211/ieee80211_ioctl.h>
#include "conky.h" #include "conky.h"
#include "diskio.h"
#include "logging.h"
#include "openbsd.h"
#include "top.h"
#define MAXSHOWDEVS 16 #define MAXSHOWDEVS 16
@ -659,6 +663,10 @@ void clear_diskio_stats()
{ {
} }
struct diskio_stat *prepare_diskio_stat(const char *s)
{
}
void update_diskio() void update_diskio()
{ {
return; /* XXX: implement? hifi: not sure how */ return; /* XXX: implement? hifi: not sure how */

View File

@ -2,6 +2,7 @@
#define OPENBSD_H_ #define OPENBSD_H_
#include "common.h" #include "common.h"
#include <sys/param.h>
#include <sys/sysctl.h> #include <sys/sysctl.h>
#include <sys/sensors.h> #include <sys/sensors.h>
#include <machine/apmvar.h> #include <machine/apmvar.h>