vcomp: Add better stub for omp_get_num_procs.
This commit is contained in:
parent
5c988477d4
commit
d97d342585
|
@ -29,6 +29,12 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(vcomp);
|
||||
|
||||
int CDECL omp_get_num_procs(void)
|
||||
{
|
||||
TRACE("stub\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Time in seconds since "some time in the past" */
|
||||
double CDECL omp_get_wtime(void)
|
||||
{
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
@ stub omp_get_dynamic
|
||||
@ stub omp_get_max_threads
|
||||
@ stub omp_get_nested
|
||||
@ stub omp_get_num_procs
|
||||
@ cdecl omp_get_num_procs()
|
||||
@ stub omp_get_num_threads
|
||||
@ stub omp_get_thread_num
|
||||
@ stub omp_get_wtick
|
||||
|
|
Loading…
Reference in New Issue