示例#1
0
t_status		set_flush_pipe(i_set			setid)
{
  if (set_flush_ll(setid) != STATUS_OK)
    CORE_ESCAPE("unable to flush the linked-list set");

  CORE_LEAVE();
}
t_error			set_flush_pipe(i_set			setid)
{
  t_error		retval;

  SET_ENTER(set);

  retval = set_flush_ll(setid);

  SET_LEAVE(set, retval);
}