| View previous topic :: View next topic |
| Author |
Message |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Mon Aug 16, 2004 10:46 am Post subject: pthread_cond_destroy |
|
|
POSIX
POSIX is a registered trademark from the IEEE. The following assertions are derived from copyrighted material. Original text and copyright information can be found at http://www.opengroup.org.
Here is what POSIX requires for this function:
- The condition variable passed to the function must become uninitialized (when the function is successful).
- It is safe to destroy a condition variable when it is not used (no thread is blocked on it).
- On success the function must return 0.
- The function must not return EINTR.
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Mon Aug 16, 2004 10:51 am Post subject: Conformance Status |
|
|
Conformance Status
- Assertion 1 cannot be tested as there is no way to detect an uninitialized conditionnal variable without knowing implementation details.
- Assertion 2 is not tested yet. A new testcase will be written.
- Assertion 3 cannot be tested.
- Assertion 4 is tested in the pthread_cond_init() tests and does not need further testing.
_________________ Sebastien Decugis.
Last edited by tHeDoc on Mon Aug 23, 2004 9:23 am; edited 1 time in total |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Mon Aug 16, 2004 4:30 pm Post subject: Stress & Scalability Status |
|
|
Stress and Scalability Status
Those issues are covered in the pthread_cond_init routine and don't need more testcases. _________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Mon Aug 23, 2004 3:11 pm Post subject: Conformance Test |
|
|
Conformance Test
The new sample has been written and is now part of the OPTS:
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
|