Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions arch/sim/src/sim/win/sim_hosttime.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,22 @@ int host_settimer(uint64_t nsec)
return -ENOSYS;
}

/****************************************************************************
* Name: host_set_timeratio
*
* Description:
* Set the ratio of simulated time to real time in percent.
* Not implemented on Windows.
*
* Input Parameters:
* ratio - The new time ratio in percent
*
****************************************************************************/

void host_set_timeratio(int ratio)
{
}

/****************************************************************************
* Name: host_timerirq
*
Expand Down
Loading