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

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Wed Dec 08, 2004 11:54 am Post subject: pthread_join |
|
|
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_join() returns only when the joined thread has terminated.
- The thread return value is accessible if the value_ptr parameter is not null.
- If the thread calling pthread_join is canceled, the joined thread remains joinable.
- ESRCH is returned when no thread correspond to the given thread ID.
- The function does not return EINTR.
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Thu Dec 09, 2004 4:06 pm Post subject: Conformance Status |
|
|
Conformance Status
- Assertion 1 is partially tested in the OPTS. A new testcase will be written to test the non-default attributes in thread creation.
- Assertion 2 is already well tested in the pthread_exit test routines, and therefore does not need more testing here. See this thread for details.
- Assertion 3 is not yet tested in OPTS. A new testcase will be written here.
- Assertion 4 is already tested in OPTS and does not need more testing.
- Assertion 5 is not tested yet. A new testcase will be written.
Note: The 6-1.c test in OPTS becomes speculative as the tested feature has become optional since POSIX Issue 6 Technical Corrigendum 2. _________________ Sebastien Decugis.
Last edited by tHeDoc on Tue Jan 18, 2005 11:40 am; edited 1 time in total |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Mon Dec 13, 2004 4:43 pm Post subject: Scalability and Stress status |
|
|
Scalability and Stress status
These issues are covered in pthread_create() tests and no additional tests will be written. _________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Tue Jan 18, 2005 3:15 pm Post subject: Conformance Tests |
|
|
Conformance Tests
New conformance tests for this function have been written and submitted to the Open POSIX Test Suite. Find source code there:
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
|