summaryrefslogtreecommitdiff
path: root/fdstats.h
blob: f01f2ca528f5171842c346986adced185766c013 (plain)
    1 #include <sys/stat.h>
    2 #include <unistd.h>
    3 #include <stdio.h>
    4 #include "config.h"
    5 
    6 #ifndef _fdstats_h
    7 #define _fdstats_h
    8 
    9 struct fdstats {
   10   unsigned long livesize;
   11   unsigned long deadsize;
   12   unsigned long unknown;
   13   unsigned long dead;
   14   unsigned long live;
   15   unsigned long sockets;
   16   unsigned long inodes;
   17   unsigned long pipes;
   18 };
   19 
   20 int fdstats_read(struct fdstats*, char*, struct config*);
   21 
   22 #endif

Generated by cgit