Changeset 3b08178 in mainline for uspace/srv/fs/minixfs/mfs.h


Ignore:
Timestamp:
2011-03-17T15:22:22Z (14 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e54ba607
Parents:
953a823
Message:

Initialize block cache and add a function to get a filesystem instance given the device handle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/minixfs/mfs.h

    r953a823 r3b08178  
    3636#include <minix.h>
    3737#include <libblock.h>
     38#include <libfs.h>
    3839#include <adt/list.h>
    3940#include "../../vfs/vfs.h"
     
    4647#define mfsdebug(...)
    4748#endif
     49
     50#ifdef _MAIN
     51#define GLOBAL
     52#else
     53#define GLOBAL extern
     54#endif
     55
     56GLOBAL fs_reg_t mfs_reg;
    4857
    4958typedef enum {
     
    8089
    8190extern void mfs_mounted(ipc_callid_t rid, ipc_call_t *request);
     91extern void mfs_mount(ipc_callid_t rid, ipc_call_t *request);
     92extern int  mfs_get_instance(devmap_handle_t handle,
     93                                struct mfs_instance **instance);
    8294
    8395#endif
Note: See TracChangeset for help on using the changeset viewer.