Changeset 03362fbd in mainline for uspace/srv/fs/ext4fs/ext4fs.h


Ignore:
Timestamp:
2013-02-09T23:14:45Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
22dfd38
Parents:
b5d2e57 (diff), 005b765 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

Conflict resulting from bool.h → stdbool.h move and ddf structs turning opaque.
Fails to boot to shell console.

File:
1 moved

Legend:

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

    rb5d2e57 r03362fbd  
    11/*
    2  * Copyright (c) 2011 Martin Sucha
     2 * Copyright (c) 2012 Frantisek Princ
    33 * All rights reserved.
    44 *
     
    2929/** @addtogroup fs
    3030 * @{
    31  */ 
     31 */
    3232
    33 #ifndef EXT2FS_EXT2FS_H_
    34 #define EXT2FS_EXT2FS_H_
     33#ifndef EXT4FS_EXT4FS_H_
     34#define EXT4FS_EXT4FS_H_
    3535
    36 #include <libext2.h>
    3736#include <libfs.h>
    38 #include <sys/types.h>
    3937
    40 #define min(a, b)               ((a) < (b) ? (a) : (b))
     38extern vfs_out_ops_t ext4fs_ops;
     39extern libfs_ops_t ext4fs_libfs_ops;
    4140
    42 extern vfs_out_ops_t ext2fs_ops;
    43 extern libfs_ops_t ext2fs_libfs_ops;
     41extern int ext4fs_global_init(void);
     42extern int ext4fs_global_fini(void);
    4443
    45 extern int ext2fs_global_init(void);
    46 extern int ext2fs_global_fini(void);
    4744
    4845#endif
Note: See TracChangeset for help on using the changeset viewer.