Changeset 101 for trunk/kernel/syscalls/sys_fork.c
- Timestamp:
- Jun 29, 2017, 4:44:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_fork.c
r23 r101 64 64 65 65 fork_dmsg("\n[INFO] %s : enters for process %d at cycle [%d]\n", 66 __FUNCTION__, parent_process->pid, hal_ time_stamp());66 __FUNCTION__, parent_process->pid, hal_get_cycles()); 67 67 68 68 // save FPU state in fpu_context if parent process is FPU owner … … 214 214 215 215 fork_dmsg("\n[INFO] %s : completed / parent pid = %x / child pid = %x / at cycle [%d]\n", 216 __FUNCTION__, parent_process->pid, child_process->pid, hal_ time_stamp() );216 __FUNCTION__, parent_process->pid, child_process->pid, hal_get_cycles() ); 217 217 218 218 return child_process->pid;
Note: See TracChangeset
for help on using the changeset viewer.