vcomp: Better stub for omp_get_num_threads.
This commit is contained in:
parent
ed3d0e00ae
commit
9ba01e0246
|
@ -35,6 +35,12 @@ int CDECL omp_get_num_procs(void)
|
|||
return 1;
|
||||
}
|
||||
|
||||
int CDECL omp_get_num_threads(void)
|
||||
{
|
||||
TRACE("stub\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Time in seconds since "some time in the past" */
|
||||
double CDECL omp_get_wtime(void)
|
||||
{
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
@ stub omp_get_max_threads
|
||||
@ stub omp_get_nested
|
||||
@ cdecl omp_get_num_procs()
|
||||
@ stub omp_get_num_threads
|
||||
@ cdecl omp_get_num_threads()
|
||||
@ stub omp_get_thread_num
|
||||
@ stub omp_get_wtick
|
||||
@ cdecl omp_get_wtime()
|
||||
|
|
Loading…
Reference in New Issue