Changeset b6035ba in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2009-05-05T22:09:13Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
770d281
Parents:
c852f4be
Message:

Introduce the concept of FS nodes. A FS node is a typed abstraction of
file-system-specific node type. It replaces the void * in libfs interfaces
and is suitable for holding various information such as mount point data.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat.h

    rc852f4be rb6035ba  
    179179/** FAT in-core node. */
    180180typedef struct fat_node {
     181        /** Back pointer to the FS node. */
     182        fs_node_t               *bp;
     183       
    181184        futex_t                 lock;
    182185        fat_node_type_t         type;
Note: See TracChangeset for help on using the changeset viewer.