Changeset ef4cf62 in mainline for uspace/lib/c/include/ipc/vfs.h


Ignore:
Timestamp:
2017-03-10T09:41:23Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1701a24d
Parents:
4809715
Message:

Remove commented out code and unused bit positions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/vfs.h

    r4809715 ref4cf62  
    157157 * VFS_UNLINK.
    158158 */
    159 #define L_UNLINK                128
     159#define L_UNLINK                64
    160160
    161161/**
     
    165165 * client.
    166166 */
    167 #define L_OPEN                  256
     167#define L_OPEN                  128
    168168
    169169/*
     
    171171 */
    172172enum {
    173         /**
    174          * WALK_PARTIAL requests that if the whole path cannot be traversed,
    175          * the walk() operation should return the last visited file, along
    176          * with an indication of how many directories have been traversed.
    177          */
    178         //WALK_PARTIAL = (1 << 0),
     173        WALK_MAY_CREATE = (1 << 0),
     174        WALK_MUST_CREATE = (1 << 1),
    179175       
    180         WALK_MAY_CREATE = (1 << 1),
    181         WALK_MUST_CREATE = (1 << 2),
    182        
    183         WALK_REGULAR = (1 << 3),
    184         WALK_DIRECTORY = (1 << 4),
    185         WALK_MOUNT_POINT = (1 << 5),
     176        WALK_REGULAR = (1 << 2),
     177        WALK_DIRECTORY = (1 << 3),
     178        WALK_MOUNT_POINT = (1 << 4),
    186179       
    187180        WALK_ALL_FLAGS = WALK_MAY_CREATE | WALK_MUST_CREATE | WALK_REGULAR | WALK_DIRECTORY,
Note: See TracChangeset for help on using the changeset viewer.