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

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Tue Aug 24, 2004 9:31 am Post subject: pthread_mutex_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:
- pthread_mutex_init() can be used to re-initialize a destroyed mutex.
- It is safe to destroy an initialized unlocked mutex.
- The function must not return EINTR.
NOTE: there are three more assertions which cannot be tested without knowing the implementation details:
- When the function succeeds, the mutex becomes uninitialized.
- When the function succeeds, it must return 0.
- When the function fails, is must return non-zero.
_________________ Sebastien Decugis.
Last edited by tHeDoc on Tue Aug 24, 2004 9:47 am; edited 1 time in total |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Tue Aug 24, 2004 9:35 am Post subject: Conformance Status |
|
|
Conformance Status
- Assertion 1 is tested only with default attribute mutex. A new testcase will be written.
- Assertion 2 is tested only with default attribute mutex. A new testcase will be written.
- Assertion 3 is already tested in the pthread_mutex_init() tests and does not need an additional test.
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Tue Aug 24, 2004 9:38 am Post subject: Scalability and Stress |
|
|
Scalability and Stress status
Scalability has no meaning for this function.
Stress issues are already covered in the pthread_mutex_init routine tests. _________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Tue Sep 21, 2004 9:30 am Post subject: Conformance tests |
|
|
Conformance tests
The following conformance tests have been added to the Open POSIX testsuite:
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
|