Changeset da9f220d in mainline
- Timestamp:
- 2012-06-03T15:02:50Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4059a28
- Parents:
- 79b5bc9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext4/libext4_inode.c
r79b5bc9 rda9f220d 156 156 } 157 157 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) 160 162 */ 161 163 uint32_t ext4_inode_get_change_inode_time(ext4_inode_t *inode) … … 164 166 } 165 167 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) 168 172 */ 169 173 void ext4_inode_set_change_inode_time(ext4_inode_t *inode, uint32_t time) … … 172 176 } 173 177 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) 176 182 */ 177 183 uint32_t ext4_inode_get_modification_time(ext4_inode_t *inode) … … 180 186 } 181 187 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) 184 192 */ 185 193 void ext4_inode_set_modification_time(ext4_inode_t *inode, uint32_t time)
Note:
See TracChangeset
for help on using the changeset viewer.