summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/fs/mount.h
blob: a0edd5d114cc68375a26f6e4a18727d89d1ae083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MOUNT_H
#define MOUNT_H

#include "fs.h"

#define FS_MOUNT_LIMIT 16

struct fs_mount_point
{
    struct fs_inumber       inode;          // dir mounted
    uint                    serial_port :4;
    struct fs_superblock    superblock;     // block informations
}

#endif