Solaris: fix includes

This commit is contained in:
Christian Göttsche 2021-05-19 19:01:30 +02:00 committed by cgzones
parent fdda291a0e
commit 8f34225a49
2 changed files with 12 additions and 1 deletions

View File

@ -22,7 +22,7 @@ in the source distribution for its full text.
#include <time.h>
#include "CRT.h"
#include "solaris/ProcessList.h"
#include "solaris/Platform.h"
#include "solaris/SolarisProcess.h"

View File

@ -13,7 +13,12 @@ in the source distribution for its full text.
#define GZONE "global "
#define UZONE "unknown "
#include "config.h" // IWYU pragma: keep
#include <kstat.h>
#include <stdbool.h>
#include <stdint.h>
#include <sys/param.h>
#include <sys/uio.h>
#include <sys/resource.h>
@ -21,6 +26,12 @@ in the source distribution for its full text.
#include <sys/sysinfo.h>
#include <sys/swap.h>
#include "Hashtable.h"
#include "ProcessList.h"
#include "UsersTable.h"
#include "solaris/SolarisProcess.h"
#include "zfs/ZfsArcStats.h"