]> jfr.im git - solanum.git/commitdiff
again, fbfile.c hasn't existed in a long time.
authorWilliam Pitcock <redacted>
Fri, 21 Dec 2007 17:14:08 +0000 (11:14 -0600)
committerWilliam Pitcock <redacted>
Fri, 21 Dec 2007 17:14:08 +0000 (11:14 -0600)
doc/technical/file-management.txt [deleted file]

diff --git a/doc/technical/file-management.txt b/doc/technical/file-management.txt
deleted file mode 100644 (file)
index d5e103a..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-Overview of the file management subsystem
-Adrian Chadd <adrian@creative.net.au>
-
-$Id: file-management.txt 6 2005-09-10 01:02:21Z nenolod $
-
-
-File operations
----------------
-
-The file operations are also wrapped through file_open() and file_close()
-which handle calling fd_open() / fd_close() and tracking the filedescriptors
-correctly. fbopen() / fbclose() use file_open() / file_close() too.
-
-fileio.c defines the functions:
-
-int
-file_open(const char *filename, int mode, int fmode)
-
-A wrapper around open(filename, flags, mode). Read the open manpage for
-information. file_open() enforces filedescriptor limits and tags the FD
-through fd_open().
-
-void
-file_close(int fd)
-
-A wrapper around close() for files. close() handles fd_close()ing the fd.
-
-
-FBFILE *
-fbopen(const char *filename, const char *mode)
-
-void
-fbclose(FBFILE *fb)
-
-These are the 'buffered disk IO' routines. You can read the code yourself.
-Note that these routines use file_open() and file_close().
-