Searched refs:mntsize (Results 1 - 1 of 1) sorted by relevance

/barrelfish-master/lib/libc/gen/
H A Dgetmntinfo.c48 static int mntsize; local
51 if (mntsize <= 0 && (mntsize = getfsstat(0, 0, MNT_NOWAIT)) < 0)
53 if (bufsize > 0 && (mntsize = getfsstat(mntbuf, bufsize, flags)) < 0)
55 while (bufsize <= mntsize * sizeof(struct statfs)) {
58 bufsize = (mntsize + 1) * sizeof(struct statfs);
61 if ((mntsize = getfsstat(mntbuf, bufsize, flags)) < 0)
65 return (mntsize);

Completed in 79 milliseconds