NAME dce_db_unlock - Releases the backing store lock SYNOPSIS #include <dce/dce.h> #include <dce/dbif.h> void dce_db_unlock( dce_db_handle_t handle, error_status_t *status ); PARAMETERS Input handle A handle, returned from dce_db_open(), that identifies the backing store being used. Output status A pointer to the completion status. On successful completion, the routine returns error_status_ok. Otherwise, it returns an error. DESCRIPTION The dce_db_unlock() routine releases the lock associated with the handle. ERRORS db_s_not_locked An attempt was made to unlock a backing store, but it was not locked. error_status_ok The call was successful. RELATED INFORMATION Functions: dce_db_lock