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