summaryrefslogtreecommitdiffstats
path: root/isys/imount.h
blob: 32cfafac0ddbbda148cbc2e02e6f1193101fc424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef H_IMOUNT
#define H_IMOUNT

#define IMOUNT_ERR_ERRNO	1
#define IMOUNT_ERR_OTHER	2

#include <sys/mount.h>		/* for umount() */

#define IMOUNT_RDONLY  1
#define IMOUNT_BIND    2
#define IMOUNT_REMOUNT 4

int doPwMount(char * dev, char * where, char * fs, int options, void * data);
int mkdirChain(char * origChain);

#endif