Changeset da9f220d in mainline for uspace/lib/ext4/libext4_inode.c


Ignore:
Timestamp:
2012-06-03T15:02:50Z (12 years ago)
Author:
Frantisek Princ <frantisek.princ@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4059a28
Parents:
79b5bc9
Message:

missing comments added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ext4/libext4_inode.c

    r79b5bc9 rda9f220d  
    156156}
    157157
    158 /** TODO comment
    159  *
     158/** Get time, when i-node was last changed.
     159 *
     160 * @param inode         i-node
     161 * @return                      time of the last change (POSIX)
    160162 */
    161163uint32_t ext4_inode_get_change_inode_time(ext4_inode_t *inode)
     
    164166}
    165167
    166 /** TODO comment
    167  *
     168/** Set time, when i-node was last changed.
     169 *
     170 * @param inode         i-node
     171 * @param time          time of the last change (POSIX)
    168172 */
    169173void ext4_inode_set_change_inode_time(ext4_inode_t *inode, uint32_t time)
     
    172176}
    173177
    174 /** TODO comment
    175  *
     178/** Get time, when i-node content was last modified.
     179 *
     180 * @param inode         i-node
     181 * @return                      time of the last content modification (POSIX)
    176182 */
    177183uint32_t ext4_inode_get_modification_time(ext4_inode_t *inode)
     
    180186}
    181187
    182 /** TODO comment
    183  *
     188/** Set time, when i-node content was last modified.
     189 *
     190 * @param inode         i-node
     191 * @param time          time of the last content modification (POSIX)
    184192 */
    185193void ext4_inode_set_modification_time(ext4_inode_t *inode, uint32_t time)
Note: See TracChangeset for help on using the changeset viewer.