示例#1
0
t_status		set_locate_pipe(i_set			setid,
					t_id			id,
					s_iterator*		iterator)
{
  if (set_locate_ll(setid, id, iterator) != STATUS_OK)
    CORE_ESCAPE("unable to locate the object from the linked-list set");

  CORE_LEAVE();
}
t_error			set_locate_pipe(i_set			setid,
					t_id			id,
					t_iterator*		iterator)
{
  t_error		retval;

  SET_ENTER(set);

  retval = set_locate_ll(setid, id, iterator);

  SET_LEAVE(set, ERROR_UNKNOWN);
}