blob: 8fb497417f83816558537eb4a9d9217c5c370029 [file] [log] [blame]
OpenMPCHelpBook_set_lock=Blocks the thread executing the function until the specified lock is available and then sets the lock. A simple lock is available if it is unlocked. A nestable lock is available if it is unlocked or if it is already owned by the thread executing the function.
OpenMPCHelpBook_set_nest_lock=Blocks the thread executing the function until the specified lock is available and then sets the lock. A simple lock is available if it is unlocked. A nestable lock is available if it is unlocked or if it is already owned by the thread executing the function.
OpenMPCHelpBook_test_lock=Attempts to set a lock but do not block execution of the thread.
OpenMPCHelpBook_test_nest_lock=Attempts to set a lock but do not block execution of the thread.
OpenMPCHelpBook_unset_lock=Provides the means of releasing ownership of a lock.
OpenMPCHelpBook_unset_nest_lock=Provides the means of releasing ownership of a lock.
OpenMPCHelpBook_get_wtime=Returns the time elapsed from a fixed starting time. The value of the fixed starting time is determined at the start of the current program, and remains constant throughout program execution.
OpenMPCHelpBook_get_wtick=Returns the number of seconds between clock ticks.
OpenMPCHelpBook_init_lock=These functions (this and omp_init_nest_lock) provide the only means of initializing a lock. Each function initializes the lock associated with the parameter lock for use in subsequent calls.
OpenMPCHelpBook_nest_lock=These functions (this and omp_init_lock) provide the only means of initializing a lock. Each function initializes the lock associated with the parameter lock for use in subsequent calls.
OpenMPCHelpBook_destroy_nest_lock=Ensures that the specified lock variable lock is uninitialized.
OpenMPCHelpBook_destroy_lock=Ensures that the specified lock variable lock is uninitialized.
OpenMPCHelpBook_get_dynamic=This function returns non-zero if dynamic thread adjustments enabled and returns 0 otherwise.
OpenMPCHelpBook_get_max_threads=This function returns the maximum value that can be returned by calls to omp_get_num_threads.
OpenMPCHelpBook_get_nested=This function returns non-zero if nested parallelism is enabled and 0 if it is disabled.
OpenMPCHelpBook_get_num_procs=This function returns the maximum number of processors that could be assigned to the program.
OpenMPCHelpBook_get_num_threads=This function returns the number of threads currently in the team executing the parallel region from which it is called.
OpenMPCHelpBook_get_thread_num=This function returns the thread number, within its team, of the thread executing the function. The thread number lies between 0 and omp_get_num_threads()-1, inclusive. The master thread of the team is thread 0.
OpenMPCHelpBook_in_parallel=This function returns non-zero if it is called within the dynamic extent of a parallel region executing in parallel; otherwise, it returns 0.
OpenMPCHelpBook_omp_c_and_fortran_help_book_title=OpenMP C and Fortran Help Book
OpenMPCHelpBook_set_dynamic=This function enables or disables dynamic adjustment of the number of threads available for execution of parallel regions.
OpenMPCHelpBook_set_nested=This function enables or disables nested parallelism.
OpenMPCHelpBook_set_num_threads=Sets the number of threads that will be used in the next parallel region