#include "tmpfs.h"
#include <ipc/services.h>
#include <ipc/ns.h>
#include <async.h>
#include <errno.h>
#include <unistd.h>
#include <stdio.h>
#include <task.h>
#include <libfs.h>
#include "../../vfs/vfs.h"
Go to the source code of this file.
Defines | |
#define | NAME "tmpfs" |
Functions | |
int | main (int argc, char **argv) |
static void | tmpfs_connection (ipc_callid_t iid, ipc_call_t *icall) |
This connection fibril processes VFS requests from VFS. | |
Variables | |
fs_reg_t | tmpfs_reg |
vfs_info_t | tmpfs_vfs_info |
Every instance of tmpfs exists purely in memory and has neither a disk layout nor any permanent storage (e.g. disk blocks). With each system reboot, data stored in a tmpfs file system is lost.
Definition in file tmpfs.c.