search for: _mntent_h

Displaying 4 results from an estimated 4 matches for "_mntent_h".

Did you mean: _intent_
2008 Jul 23
2
[RFC] klibc add minimal mntent.h
...0 40 1547 60b /usr/lib/klibc/bin/mount 58526 2544 4552 65622 10056 ~/src/util-linux-ng/mount/mount diff --git a/usr/include/mntent.h b/usr/include/mntent.h new file mode 100644 index 0000000..e1eaf60 --- /dev/null +++ b/usr/include/mntent.h @@ -0,0 +1,18 @@ +#ifndef _MNTENT_H +#define _MNTENT_H 1 + +#define MNTTYPE_IGNORE "ignore" /* Ignore this entry. */ +#define MNTTYPE_SWAP "swap" /* Swap device. */ + +/* Structure describing a mount table entry. */ +struct mntent +{ + char *mnt_fsname; /* Device or server for filesyst...
2011 Aug 30
0
[PATCH] include: [mntent.h] Add MNTTYPE_SWAP definition
...f-by: maximilian attems <max at stro.at> --- usr/include/mntent.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/usr/include/mntent.h b/usr/include/mntent.h index 210610c..104f35e 100644 --- a/usr/include/mntent.h +++ b/usr/include/mntent.h @@ -1,6 +1,8 @@ #ifndef _MNTENT_H #define _MNTENT_H 1 +#define MNTTYPE_SWAP "swap" + struct mntent { char *mnt_fsname; /* name of mounted file system */ char *mnt_dir; /* file system path prefix */ -- 1.7.5.4
2008 Sep 05
0
initial mntent.h, mount features, ipconfig fixes
...[klibc] Add initial mntent.h with setmntent() and endmntent() Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/include/mntent.h b/usr/include/mntent.h new file mode 100644 index 0000000..ca6b211 --- /dev/null +++ b/usr/include/mntent.h @@ -0,0 +1,17 @@ +#ifndef _MNTENT_H +#define _MNTENT_H 1 + +struct mntent { + char *mnt_fsname; /* name of mounted file system */ + char *mnt_dir; /* file system path prefix */ + char *mnt_type; /* mount type (see mntent.h) */ + char *mnt_opts; /* mount options (see mntent.h) */ + int mnt_freq; /* dump frequency in days *...
2008 Sep 07
1
[git pull v2] initial mntent.h, mount features, ipconfig fixes
...[klibc] Add initial mntent.h with setmntent() and endmntent() Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/include/mntent.h b/usr/include/mntent.h new file mode 100644 index 0000000..ca6b211 --- /dev/null +++ b/usr/include/mntent.h @@ -0,0 +1,17 @@ +#ifndef _MNTENT_H +#define _MNTENT_H 1 + +struct mntent { + char *mnt_fsname; /* name of mounted file system */ + char *mnt_dir; /* file system path prefix */ + char *mnt_type; /* mount type (see mntent.h) */ + char *mnt_opts; /* mount options (see mntent.h) */ + int mnt_freq; /* dump frequency in days *...