Changeset edebb4a1 in mainline for uspace/lib/c/include/types/vol.h


Ignore:
Timestamp:
2015-10-14T22:30:12Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ea0ff6b
Parents:
4b6635a7
Message:

Handle dummy partition addition/removal during label destruction/creation. Handle dummy label properly in fdisk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/types/vol.h

    r4b6635a7 redebb4a1  
    5555#define VOL_FSTYPE_LIMIT (fs_ext4 + 1)
    5656
     57/** Volume service */
     58typedef struct vol {
     59        /** Volume service session */
     60        async_sess_t *sess;
     61} vol_t;
     62
     63/** Partition information */
     64typedef struct {
     65        /** Partition content type */
     66        vol_part_cnt_t pcnt;
     67        /** Filesystem type */
     68        vol_fstype_t fstype;
     69} vol_part_info_t;
     70
    5771#endif
    5872
Note: See TracChangeset for help on using the changeset viewer.