vm: stub out windows sampling timer implementation

AFAIK Windows has no equivalent to setitimer. We'll probably need to use a thread that periodically pauses and samples the main VM thread.
db4
Joe Groff 2011-10-31 00:11:59 -07:00
parent f5cdfaeb2a
commit 125c46c10f
1 changed files with 10 additions and 0 deletions

View File

@ -301,4 +301,14 @@ void factor_vm::open_console()
SetConsoleCtrlHandler(factor::ctrl_handler, TRUE);
}
void factor_vm::start_sampling_profiler_timer()
{
general_error(ERROR_NOT_IMPLEMENTED, false_object, false_object);
}
void factor_vm::end_sampling_profiler_timer()
{
general_error(ERROR_NOT_IMPLEMENTED, false_object, false_object);
}
}