|
|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T d
Length: 1102 (0x44e)
Types: TextFile
Names: »ds_abandon.c«
└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
└─⟦eba4602b1⟧ »./isode-5.0.tar.Z«
└─⟦d3ac74d73⟧
└─⟦this⟧ »isode-5.0/quipu/ds_abandon.c«
/* ds_abandon.c - */
#ifndef lint
static char *rcsid = "$Header: /f/osi/quipu/RCS/ds_abandon.c,v 6.0 89/03/18 23:41:13 mrose Rel $";
#endif
/*
* $Header: /f/osi/quipu/RCS/ds_abandon.c,v 6.0 89/03/18 23:41:13 mrose Rel $
*
*
* $Log: ds_abandon.c,v $
* Revision 6.0 89/03/18 23:41:13 mrose
* Release 5.0
*
*/
/*
* NOTICE
*
* Acquisition, use, and distribution of this module and related
* materials are subject to the restrictions of a license agreement.
* Consult the Preface in the User's Manual for the full terms of
* this agreement.
*
*/
#include "quipu/util.h"
#include "quipu/attrvalue.h"
#include "quipu/abandon.h"
#include "quipu/dsp.h"
#include "quipu/ds_error.h"
extern LLog * log_dsap;
/* ARGSUSED */
do_ds_abandon (arg, error)
struct ds_abandon_arg *arg;
struct DSError *error;
{
DLOG (log_dsap,LLOG_TRACE,("ds_abandon"));
error->dse_type = DSE_ABANDON_FAILED;
error->ERR_ABANDON_FAIL.DSE_ab_problem = DSE_AB_CANNOTABANDON;
error->ERR_ABANDON_FAIL.DSE_ab_invokeid = 0;
return (NOTOK);
}