Changeset 6364d3c in mainline for uspace/srv/fs/fat/fat.h


Ignore:
Timestamp:
2007-12-04T20:29:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9119d25
Parents:
38c706cc
Message:

Sync IPC comments with IPC code.

File:
1 edited

Legend:

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

    r38c706cc r6364d3c  
    136136extern uint8_t *plb_ro;
    137137
     138extern void fat_lookup(ipc_callid_t, ipc_call_t *);
     139
     140/*
     141 * The following interfaces are rather fs-neutral and might be later moved to a
     142 * dedicated library (e.g. libfs). We just wait until the interfaces stabilize
     143 * and until there is more than one fs implementation.
     144 */
    138145extern int block_read(int, unsigned long, void *);
     146extern int block_write(int, unsigned long, void *);
    139147
    140 extern void fat_lookup(ipc_callid_t, ipc_call_t *);
     148extern void node_add_mp(int, unsigned long);
     149extern void node_del_mp(int, unsigned long);
     150extern bool node_is_mp(int, unsigned long);
    141151
    142152#endif
Note: See TracChangeset for help on using the changeset viewer.