Changeset efd4a72 in mainline for uspace/lib/libfs/libfs.h


Ignore:
Timestamp:
2007-12-16T16:25:26Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0c82d28
Parents:
74303b6
Message:

VFS work.
Move FS registration code to libfs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libfs/libfs.h

    r74303b6 refd4a72  
    3737#define LIBFS_LIBFS_H_
    3838
     39#include "../../srv/vfs/vfs.h"
     40#include <stdint.h>
     41#include <ipc/ipc.h>
     42#include <async.h>
     43
     44typedef struct {
     45        int fs_handle;          /**< File system handle. */
     46        ipcarg_t vfs_phonehash; /**< Initial VFS phonehash. */
     47        uint8_t *plb_ro;        /**< Read-only PLB view. */
     48} fs_reg_t;
     49
     50extern int fs_register(int, fs_reg_t *, vfs_info_t *, async_client_conn_t);
     51
    3952#endif
    4053
Note: See TracChangeset for help on using the changeset viewer.