Skip to content

Commit

Permalink
Merge branch 'SIGAR-161' into sigar-1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dougm committed Jul 31, 2009
2 parents ab87592 + 60182c3 commit a355ba2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/os/darwin/darwin_sigar.c
Expand Up @@ -23,7 +23,9 @@

#include <sys/param.h>
#include <sys/mount.h>
#ifdef DARWIN
#include <nfs/rpcv2.h>
#endif
#include <nfs/nfsproto.h>

#ifdef DARWIN
Expand Down Expand Up @@ -2379,7 +2381,11 @@ int sigar_net_route_list_get(sigar_t *sigar,
if (sysctl(mib, NMIB(mib), NULL, &needed, NULL, 0) < 0) {
return errno;
}

#if __FreeBSD_version >= 800000
if (needed == 0) {
return SIGAR_ENOTIMPL; /*XXX hoping this is an 8.0beta bug*/
}
#endif
buf = malloc(needed);

if (sysctl(mib, NMIB(mib), buf, &needed, NULL, 0) < 0) {
Expand Down Expand Up @@ -3148,7 +3154,7 @@ int sigar_nfs_server_v3_get(sigar_t *sigar,
return SIGAR_OK;
}

#if defined(__FreeBSD__)
#if defined(__FreeBSD__) && /*XXX*/ (__FreeBSD_version < 800000)

#define _KERNEL
#include <sys/file.h>
Expand Down

0 comments on commit a355ba2

Please sign in to comment.