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

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Fri Mar 04, 2005 10:11 am Post subject: sem_unlink |
|
|
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:
- When the semaphore is referenced by other processes, the function has no effect on the state of the semaphore.
- Destruction of the semaphore is postponed until all process which were using the semaphore have called sem_close, _exit or exec.
- Call to sem_open with the same name refer to a new semaphore, once sem_unlink has been called.
- sem_unlink does not block.
- sem_unlink returns 0 on success.
- sem_unlink returns -1 and sets errno to EACCESS when the process has not privilege to unlink the semaphore.
- sem_unlink returns -1 and sets errno to ENAMETOOLONG when the semaphore name lenght is greater than PATH_MAX or a component length is greater than NAME_MAX.
- sem_unlink returns -1 and sets errno to ENOENT when the named semaphore does not exist.
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Fri Mar 04, 2005 3:45 pm Post subject: Conformance Status |
|
|
Conformance Status
- Assertion 1 is not tested yet. A new testcase will be written.
- Assertion 2 is poorly tested. A new testcase will be written.
- Assertion 3 is not tested yet. A new testcase will be written.
- Assertion 4 is not tested yet. A new testcase will be written.
- Assertion 5 is impliciteely tested in other testcases.
- Assertion 6 is not tested yet. A new testcase will be written.
- Assertion 7 is not tested yet. A new testcase will be written.
- Assertion 8 is not tested yet. A new testcase will be written.
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Fri Mar 04, 2005 3:48 pm Post subject: Scalability and Stress Status |
|
|
Scalability and Stress Status
No scalability or stress test will be written for this function. _________________ Sebastien Decugis. |
|
| Back to top |
|
 |
tHeDoc Project Maintener

Joined: 21 Apr 2004 Posts: 237 Location: Echirolles, France
|
Posted: Wed Mar 09, 2005 1:36 pm Post subject: Conformance Test |
|
|
Conformance Test
The following test cases have been added to OPTS:
_________________ Sebastien Decugis. |
|
| Back to top |
|
 |
|