mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-22 06:48:09 +08:00
28 lines
683 B
Plaintext
28 lines
683 B
Plaintext
# COPYRIGHT (c) 2013
|
|
# On-Line Applications Research Corporation (OAR).
|
|
#
|
|
# The license and distribution terms for this file may be
|
|
# found in the file LICENSE in this distribution or at
|
|
# http://www.rtems.org/license/LICENSE.
|
|
#
|
|
|
|
This test benchmarks the following operations:
|
|
|
|
+ pthread_cond_wait - blocks (mutex+condvar pattern)
|
|
|
|
This file describes the directives and concepts tested by this test set.
|
|
|
|
test set name: psxtmcond
|
|
|
|
directives:
|
|
+ pthread_cond_signal
|
|
+ pthread_mutex_lock
|
|
+ pthread_mutex_init
|
|
+ pthread_cond_init
|
|
+ pthread_create
|
|
+ pthread_cond_timedwait
|
|
|
|
concepts:
|
|
+ Benchmark the call pthread_cond_wait blocking threads and using a mutex and
|
|
condvar pattern.
|