MOS Source Code
|
#include "mos/filesystem/dentry.h"
#include "mos/filesystem/vfs_types.h"
#include "mos/ipc/ipc.h"
#include "mos/ipc/ipc_io.h"
#include "mos/mm/slab_autoinit.h"
#include "mos/platform/platform.h"
#include "mos/tasks/process.h"
#include <mos_stdlib.h>
#include <mos_string.h>
Go to the source code of this file.
Classes | |
struct | ipc_vfs_private_t |
Functions | |
SLAB_AUTOINIT ("ipc_vfs_private", ipc_vfs_private_slab, ipc_vfs_private_t) | |
static bool | vfs_open_ipc (inode_t *ino, file_t *file, bool created) |
static ssize_t | vfs_ipc_file_read (const file_t *file, void *buf, size_t size, off_t offset) |
static ssize_t | vfs_ipc_file_write (const file_t *file, const void *buf, size_t size, off_t offset) |
static void | vfs_ipc_file_release (file_t *file) |
Variables | |
slab_t * | ipc_vfs_private_slab = NULL |
const file_ops_t | ipc_sysfs_file_ops |
SLAB_AUTOINIT | ( | "ipc_vfs_private" | , |
ipc_vfs_private_slab | , | ||
ipc_vfs_private_t | ) |
Definition at line 23 of file ipc_sysfs.c.
Referenced by vfs_open_ipc().
const file_ops_t ipc_sysfs_file_ops |
Definition at line 110 of file ipc_sysfs.c.
Referenced by ipc_sysfs_create_ino().