dce_db_iter_start(3dce)Prepares a backing store for iteration Synopsis
#include <dce/dce.h> void dce_db_iter_start( dce_db_handle_t handle, error_status_t *status); Parameters Input
handle Output
status
Description A given handle can support only a single instance of iteration at one time. To avoid the possibility that another thread will write to the backing store during an iteration, always use the dce_db_lock( ) routine before calling dce_db_iter_start( ). Errors The following describes a partial list of errors that might be returned. Refer to the OSF DCE Problem Determination Guide for complete descriptions of all error messages.
db_s_iter_not_allowed
error_status_ok
Related Information dce_db_iter_next_by_name(3dce) dce_db_iter_next_by_uuid(3dce)
|