Changeset 409 for trunk/kernel/fs/vfs.h


Ignore:
Timestamp:
Dec 20, 2017, 4:51:09 PM (6 years ago)
Author:
alain
Message:

Fix bugs in exec

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/fs/vfs.h

    r407 r409  
    421421
    422422/******************************************************************************************
    423  * This debug function returns the current owner of the inode main lock.
     423 * This debug function copies the name of a remote inode identified by the <inode_xp>
     424 * argument to a local buffer identified by the <name> argument.
     425 * The local buffer size must be at least CONFIG_VFS_MAX_NAME_LENGTH.
    424426 *****************************************************************************************
    425427 * @ inode_xp  : extended pointer on the remote inode.
    426  * @ return extended pointer on owner thread / return XPTR_NULL if lock not taken.
    427  *****************************************************************************************/
    428 xptr_t vfs_inode_owner( xptr_t inode_xp );
    429 
    430 /******************************************************************************************
    431  * This debug function diplays the name of the inode identified by the <inode_xp>
    432  * argument, and all children names for a directory.
    433  *****************************************************************************************
    434  * @ inode_xp  : extended pointer on the remote inode.
    435  *****************************************************************************************/
    436 void vfs_inode_display( xptr_t inode_xp );
     428 * @ name      : local buffer pointer.
     429 *****************************************************************************************/
     430void vfs_inode_get_name( xptr_t inode_xp,
     431                         char * name );
    437432
    438433
Note: See TracChangeset for help on using the changeset viewer.