Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 78 of 106
Allows the calling thread to join with another thread.
sword OCIThreadJoin ( dvoid *hndl, OCIError *err, OCIThreadHandle *tHnd );
The OCI environment or user session handle.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Diagnostic information can be obtained by calling OCIErrorGet()
.
The OCIThreadHandle of the thread to join with.
This function blocks the caller until the specified thread terminates.
tHnd
should be initialized by OCIThreadHndInit()
. The result of multiple threads all trying to join with the same thread is undefined.
OCIThreadIdDestroy(), OCIThreadIdGet(), OCIThreadIdInit(), OCIThreadIdNull(), OCIThreadIdSame(), OCIThreadIdSet()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|