Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 84 of 106
Destroys and deallocate a mutex.
sword OCIThreadMutexDestroy ( 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 destroy.
Each mutex must be destroyed once it is no longer needed.
It is not legal to destroy a mutex that is uninitialized or is currently held by a thread. The destruction of a mutex must not occur concurrently with any other operations on the mutex. A mutex must not be used after it has been destroyed.
OCIThreadMutexAcquire(), OCIThreadMutexInit(), OCIThreadMutexRelease()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|