|
| static int | mount (const char *filesystemtype, BlockDevice *bdev, const void *data) |
| | Siehe man 2 mount. Mehr ...
|
| |
| static void | sync () |
| | Schreibt Änderungen im Puffer auf die Festplattte. Siehe man 2 sync. Mehr ...
|
| |
| static int | open (const char *pathname, int flags) |
| | Öffnet und erstellt (je nach flags) Dateien. Siehe man 2 open. Mehr ...
|
| |
| static int | close (int fd) |
| | Schließt einen Dateideskriptor. Siehe man 2 close. Mehr ...
|
| |
|
static ssize_t | read (int fd, void *buf, size_t count) |
| | Lesen von einem Dateideskriptor fd in Speicher buf der Länge count. Siehe man 2 read.
|
| |
|
static ssize_t | write (int fd, const void *buf, size_t count) |
| | Schreiben von Daten aus Speicher buf der Länge count an Dateideskriptor fd. Siehe man 2 write.
|
| |
| static off_t | lseek (int fd, off_t offset, int whence) |
| | Ändert den aktuellen offset für Dateideskriptor fd. Siehe man 2 lseek. Mehr ...
|
| |
|
static int | truncate (const char *path, off_t length) |
| | Kürzt Datei an path auf Länge length. Siehe man 2 truncate.
|
| |
|
static int | ftruncate (int fd, off_t length) |
| | Kürzt Datei für Dateideskriptor fd auf Länge length. Siehe man 2 ftruncate.
|
| |
|
static int | link (const char *oldpath, const char *newpath) |
| | Neuer Name newpath für Datei oldpath. Siehe man 2 link.
|
| |
|
static int | unlink (const char *pathname) |
| | Löscht Namen und bei keinem verbleibenden Verweis mehr die Datei pathname. Siehe man 2 unlink.
|
| |
|
static int | rmdir (const char *pathname) |
| | Löscht Verzeichnis pathname. Siehe man 2 rmdir.
|
| |
| static int | stat (const char *pathname, struct stat *statbuf) |
| | Liefert Dateistatus für pathname. Siehe man 2 stat. Mehr ...
|
| |
| static int | fstat (int fd, struct stat *statbuf) |
| | Liefert Dateistatus für Dateideskriptor fd. Siehe man 2 fstat. Mehr ...
|
| |
| static int | getdents (int fd, Dirent *dirp, int count) |
| | Liefert Verzeichniseinträge. Siehe man 2 getdents. Mehr ...
|
| |
| static int | mkdir (const char *pathname) |
| | Erstellt Verzeichnis pathname. Siehe man 2 mkdir. Mehr ...
|
| |
|
static int | chdir (const char *path) |
| | Wechselt in Verzeichnis path. Siehe man 2 chdir.
|
| |
|
static int | fchdir (int fd) |
| | Wechselt in Verzeichnis fd. Siehe man 2 fchdir.
|
| |