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


Ignore:
Timestamp:
2013-07-24T20:43:38Z (12 years ago)
Author:
Ji?? Z?rev?cky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9a8c188
Parents:
cb65bbe
Message:

Implement client side of walk and open.

File:
1 edited

Legend:

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

    rcb65bbe r0b18364  
    181181        //WALK_PARTIAL = (1 << 0),
    182182       
    183         WALK_ALL_FLAGS = 0,
     183        WALK_MAY_CREATE = (1 << 1),
     184        WALK_MUST_CREATE = (1 << 2),
     185       
     186        WALK_REGULAR = (1 << 3),
     187        WALK_DIRECTORY = (1 << 4),
     188       
     189        WALK_ALL_FLAGS = WALK_MAY_CREATE | WALK_MUST_CREATE | WALK_REGULAR | WALK_DIRECTORY,
    184190};
    185191
Note: See TracChangeset for help on using the changeset viewer.