blob: 742b5599e3223a41abe4d8259679823c5355ba79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "lib9.h"
#include "logfs.h"
#include "local.h"
char logfsebadfid[] = "fid not in use";
char logfsefidnotopen[] = "fid is not open for I/O";
char logfsefidopen[] = "fid is open for I/O";
char logfsenotadir[] = "fid not a dir";
char logfsefidinuse[] = "fid in use";
char logfseopen[] = "fid not open";
char logfseaccess[] = "fid open in wrong mode";
char logfselogfull[] = "log filled";
char logfselogmsgtoobig[] = "message too big for log";
char logfseinternal[] = "internal error";
char logfsenotempty[] = "directory not empty";
char logfsefullreplacing[] = "out of space trying to replace block";
char logfseunknownpath[] = "unknown path";
|