Changeset 436 for trunk/kernel/fs/vfs.c
- Timestamp:
- Mar 7, 2018, 9:02:03 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/vfs.c
r433 r436 235 235 236 236 #if CONFIG_DEBUG_VFS_INODE_CREATE 237 uint32_tcycle = (uint32_t)hal_get_cycles();237 cycle = (uint32_t)hal_get_cycles(); 238 238 if( CONFIG_DEBUG_VFS_INODE_CREATE < cycle ) 239 239 printk("\n[DBG] %s : thread %x exit / inode = %x in cluster %x / cycle %d\n", … … 1351 1351 if( CONFIG_DEBUG_VFS_LOOKUP < cycle ) 1352 1352 printk("\n[DBG] %s : thread %x enter for <%s> / cycle %d\n", 1353 __FUNCTION__, CURRENT_THREAD, path , cycle );1353 __FUNCTION__, CURRENT_THREAD, pathname, cycle ); 1354 1354 #endif 1355 1355 … … 1522 1522 if( CONFIG_DEBUG_VFS_LOOKUP < cycle ) 1523 1523 printk("\n[DBG] %s : thread %x exit for <%s> / inode %x in cluster %x / cycle %d\n", 1524 __FUNCTION__, CURRENT_THREAD, path , GET_PTR(child_xp), GET_CXY(child_xp), cycle );1524 __FUNCTION__, CURRENT_THREAD, pathname, GET_PTR(child_xp), GET_CXY(child_xp), cycle ); 1525 1525 #endif 1526 1526
Note: See TracChangeset
for help on using the changeset viewer.