Plan 9 from Bell Labs’s /usr/web/sources/contrib/rsc/9load/20040703/fs.h

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


typedef struct File File;
typedef struct Fs	Fs;

#include "dosfs.h"
#include "kfs.h"

struct File{
	union{
		Dosfile	dos;
		Kfsfile	kfs;
	};
	Fs	*fs;
};

struct Fs{
	union {
		Dos dos;
		Kfs kfs;
	};
	int	dev;				/* device id */
	long	(*diskread)(Fs*, void*, long);	/* disk read routine */
	vlong	(*diskseek)(Fs*, vlong);		/* disk seek routine */
	long	(*read)(File*, void*, long);
	int	(*walk)(File*, char*);
	File	root;
};

extern int chatty;
extern int dotini(Fs*);
extern int fswalk(Fs*, char*, File*);
extern int fsread(File*, void*, long);
extern int fsboot(Fs*, char*, Boot*);

#define BADPTR(x) ((ulong)x < 0x80000000)

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.