Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 86 of 106
Releases a mutex.
sword OCIThreadMutexRelease ( dvoid *hndl, OCIError *err, OCIThreadMutex *mutex );
The OCI environment or user session handle.
The OCI error handle. If there is an error and OCI_ERROR is returned, the error is recorded in err and diagnostic information can be obtained by calling OCIErrorGet()
.
The mutex to release.
If there are any threads blocked on the mutex, one of them will acquire it and become unblocked.
It is illegal to attempt to release an uninitialized mutex. It is also illegal for a thread to release a mutex that it does not hold.
OCIThreadMutexDestroy(), OCIThreadMutexInit(), OCIThreadMutexAcquire()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|