Skip to content

Commit c746323

Browse files
Added back the leading and trailing bars in the table.
1 parent 4703058 commit c746323

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

docs/parallel/openmp/reference/openmp-functions.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -18,30 +18,30 @@ Provides links to functions used in the OpenMP API.
1818

1919
The Visual C++ implementation of the OpenMP standard includes the following functions.
2020

21-
Function|Description
22-
--------|-----------
23-
[omp_destroy_lock](#omp-destroy-lock)|Uninitializes a lock.
24-
[omp_destroy_nest_lock](#omp-destroy-nest-lock)|Uninitializes a nestable lock.
25-
[omp_get_dynamic](#omp-get-dynamic)|Returns a value that indicates if the number of threads available in upcoming parallel regions can be adjusted by the run time.
26-
[omp_get_max_threads](#omp-get-max-threads)|Returns an integer that is equal to or greater than the number of threads that would be available if a parallel region without [num_threads](openmp-clauses.md#num-threads) were defined at that point in the code.
27-
[omp_get_nested](#omp-get-nested)|Returns a value that indicates if nested parallelism is enabled.
28-
[omp_get_num_procs](#omp-get-num-procs)|Returns the number of processors that are available when the function is called.
29-
[omp_get_num_threads](#omp-get-num-threads)|Returns the number of threads in the parallel region.
30-
[omp_get_thread_num](#omp-get-thread-num)|Returns the thread number of the thread executing within its thread team.
31-
[omp_get_wtick](#omp-get-wtick)|Returns the number of seconds between processor clock ticks.
32-
[omp_get_wtime](#omp-get-wtime)|Returns a value in seconds of the time elapsed from some point.
33-
[omp_in_parallel](#omp-in-parallel)|Returns nonzero if called from within a parallel region.
34-
[omp_init_lock](#omp-init-lock)|Initializes a simple lock.
35-
[omp_init_nest_lock](#omp-init-nest-lock)|Initializes a lock.
36-
[omp_set_dynamic](#omp-set-dynamic)|Indicates that the number of threads available in upcoming parallel regions can be adjusted by the run time.
37-
[omp_set_lock](#omp-set-lock)|Blocks thread execution until a lock is available.
38-
[omp_set_nest_lock](#omp-set-nest-lock)|Blocks thread execution until a lock is available.
39-
[omp_set_nested](#omp-set-nested)|Enables nested parallelism.
40-
[omp_set_num_threads](#omp-set-num-threads)|Sets the number of threads in upcoming parallel regions, unless overridden by a [num_threads](openmp-clauses.md#num-threads) clause.
41-
[omp_test_lock](#omp-test-lock)|Attempts to set a lock but doesn't block thread execution.
42-
[omp_test_nest_lock](#omp-test-nest-lock)|Attempts to set a nestable lock but doesn't block thread execution.
43-
[omp_unset_lock](#omp-unset-lock)|Releases a lock.
44-
[omp_unset_nest_lock](#omp-unset-nest-lock)|Releases a nestable lock.
21+
|Function|Description|
22+
|--------|-----------|
23+
|[omp_destroy_lock](#omp-destroy-lock)|Uninitializes a lock.|
24+
|[omp_destroy_nest_lock](#omp-destroy-nest-lock)|Uninitializes a nestable lock.|
25+
|[omp_get_dynamic](#omp-get-dynamic)|Returns a value that indicates if the number of threads available in upcoming parallel regions can be adjusted by the run time.|
26+
|[omp_get_max_threads](#omp-get-max-threads)|Returns an integer that is equal to or greater than the number of threads that would be available if a parallel region without [num_threads](openmp-clauses.md#num-threads) were defined at that point in the code.|
27+
|[omp_get_nested](#omp-get-nested)|Returns a value that indicates if nested parallelism is enabled.|
28+
|[omp_get_num_procs](#omp-get-num-procs)|Returns the number of processors that are available when the function is called.|
29+
|[omp_get_num_threads](#omp-get-num-threads)|Returns the number of threads in the parallel region.|
30+
|[omp_get_thread_num](#omp-get-thread-num)|Returns the thread number of the thread executing within its thread team.|
31+
|[omp_get_wtick](#omp-get-wtick)|Returns the number of seconds between processor clock ticks.|
32+
|[omp_get_wtime](#omp-get-wtime)|Returns a value in seconds of the time elapsed from some point.|
33+
|[omp_in_parallel](#omp-in-parallel)|Returns nonzero if called from within a parallel region.|
34+
|[omp_init_lock](#omp-init-lock)|Initializes a simple lock.|
35+
|[omp_init_nest_lock](#omp-init-nest-lock)|Initializes a lock.|
36+
|[omp_set_dynamic](#omp-set-dynamic)|Indicates that the number of threads available in upcoming parallel regions can be adjusted by the run time.|
37+
|[omp_set_lock](#omp-set-lock)|Blocks thread execution until a lock is available.|
38+
|[omp_set_nest_lock](#omp-set-nest-lock)|Blocks thread execution until a lock is available.|
39+
|[omp_set_nested](#omp-set-nested)|Enables nested parallelism.|
40+
|[omp_set_num_threads](#omp-set-num-threads)|Sets the number of threads in upcoming parallel regions, unless overridden by a [num_threads](openmp-clauses.md#num-threads) clause.|
41+
|[omp_test_lock](#omp-test-lock)|Attempts to set a lock but doesn't block thread execution.|
42+
|[omp_test_nest_lock](#omp-test-nest-lock)|Attempts to set a nestable lock but doesn't block thread execution.|
43+
|[omp_unset_lock](#omp-unset-lock)|Releases a lock.|
44+
|[omp_unset_nest_lock](#omp-unset-nest-lock)|Releases a nestable lock.|
4545

4646
## <a name="omp-destroy-lock"></a>omp_destroy_lock
4747

0 commit comments

Comments
 (0)