Changeset 626 for trunk/kernel/kern/process.c
- Timestamp:
- Apr 29, 2019, 7:25:09 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/process.c
r625 r626 1447 1447 #if( DEBUG_PROCESS_MAKE_FORK & 1 ) 1448 1448 cycle = (uint32_t)hal_get_cycles(); 1449 if( DEBUG_PROCESS_MAKE_ EXEC< cycle )1449 if( DEBUG_PROCESS_MAKE_FORK < cycle ) 1450 1450 printk("\n[%s] thread[%x,%x] / child takes TXT ownership / cycle %d\n", 1451 1451 __FUNCTION__ , pid, trdid, cycle ); … … 1556 1556 #if DEBUG_PROCESS_MAKE_EXEC 1557 1557 uint32_t cycle = (uint32_t)hal_get_cycles(); 1558 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1558 if( local_cxy == 0x11 ) 1559 1559 printk("\n[%s] thread[%x,%x] enters for %s / cycle %d\n", 1560 1560 __FUNCTION__, pid, thread->trdid, path, cycle ); … … 1579 1579 #if (DEBUG_PROCESS_MAKE_EXEC & 1) 1580 1580 cycle = (uint32_t)hal_get_cycles(); 1581 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1581 if( local_cxy == 0x11 ) 1582 1582 printk("\n[%s] thread[%x,%x] opened file <%s> / cycle %d\n", 1583 1583 __FUNCTION__, pid, thread->trdid, path, cycle ); … … 1589 1589 #if (DEBUG_PROCESS_MAKE_EXEC & 1) 1590 1590 cycle = (uint32_t)hal_get_cycles(); 1591 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1591 if( local_cxy == 0x11 ) 1592 1592 printk("\n[%s] thread[%x,%x] deleted existing threads / cycle %d\n", 1593 1593 __FUNCTION__, pid, thread->trdid, cycle ); … … 1599 1599 #if( DEBUG_PROCESS_MAKE_EXEC & 1 ) 1600 1600 cycle = (uint32_t)hal_get_cycles(); 1601 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1601 if( local_cxy == 0x11 ) 1602 1602 printk("\n[%s] thread[%x,%x] completed VMM reset / cycle %d\n", 1603 1603 __FUNCTION__, pid, thread->trdid, cycle ); … … 1616 1616 #if( DEBUG_PROCESS_MAKE_EXEC & 1 ) 1617 1617 cycle = (uint32_t)hal_get_cycles(); 1618 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1618 if( local_cxy == 0x11 ) 1619 1619 printk("\n[%s] thread[%x,%x] registered args/envs vsegs / cycle %d\n", 1620 1620 __FUNCTION__, pid, thread->trdid, cycle ); … … 1634 1634 #if( DEBUG_PROCESS_MAKE_EXEC & 1 ) 1635 1635 cycle = (uint32_t)hal_get_cycles(); 1636 if( DEBUG_PROCESS_MAKE_EXEC < cycle)1636 if( local_cxy == 0x11 ) 1637 1637 printk("\n[%s] thread[%x,%x] registered code/data vsegs / cycle %d\n", 1638 1638 __FUNCTION__, pid, thread->trdid, cycle );
Note: See TracChangeset
for help on using the changeset viewer.