Changeset f15cf1a6 in mainline for uspace/srv/vfs/vfs.h


Ignore:
Timestamp:
2008-02-17T16:22:10Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cf19ab5
Parents:
e704503
Message:

Support for rmdir(), unlink() and the respective VFS operations.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs.h

    re704503 rf15cf1a6  
    142142 */
    143143/**
     144 * No lookup flags used.
     145 */
     146#define L_NONE          0
     147/**
    144148 * Lookup will succeed only if the object is a regular file.  If L_CREATE is
    145149 * specified, an empty file will be created. This flag is mutually exclusive
     
    276280extern void vfs_truncate(ipc_callid_t, ipc_call_t *);
    277281extern void vfs_mkdir(ipc_callid_t, ipc_call_t *);
     282extern void vfs_unlink(ipc_callid_t, ipc_call_t *);
    278283
    279284#endif
Note: See TracChangeset for help on using the changeset viewer.