Browse Source

cleanup, signature of CKTacDump() and CKTdump(), void* --> runDesc*

pre-master-46
rlar 12 years ago
parent
commit
e08dcafbe9
  1. 4
      src/include/ngspice/cktdefs.h
  2. 2
      src/spicelib/analysis/cktacdum.c
  3. 2
      src/spicelib/analysis/cktdump.c

4
src/include/ngspice/cktdefs.h

@ -296,7 +296,7 @@ struct CKTcircuit {
extern int ACan(CKTcircuit *, int); extern int ACan(CKTcircuit *, int);
extern int ACaskQuest(CKTcircuit *, JOB *, int , IFvalue *); extern int ACaskQuest(CKTcircuit *, JOB *, int , IFvalue *);
extern int ACsetParm(CKTcircuit *, JOB *, int , IFvalue *); extern int ACsetParm(CKTcircuit *, JOB *, int , IFvalue *);
extern int CKTacDump(CKTcircuit *, double , void *);
extern int CKTacDump(CKTcircuit *, double , runDesc *);
extern int CKTacLoad(CKTcircuit *); extern int CKTacLoad(CKTcircuit *);
extern int CKTaccept(CKTcircuit *); extern int CKTaccept(CKTcircuit *);
extern int CKTacct(CKTcircuit *, JOB *, int , IFvalue *); extern int CKTacct(CKTcircuit *, JOB *, int , IFvalue *);
@ -316,7 +316,7 @@ extern int CKTdltMod(CKTcircuit *, GENmodel *);
extern int CKTdltNNum(CKTcircuit *, int); extern int CKTdltNNum(CKTcircuit *, int);
extern int CKTdltNod(CKTcircuit *, CKTnode *); extern int CKTdltNod(CKTcircuit *, CKTnode *);
extern int CKTdoJob(CKTcircuit *, int , TSKtask *); extern int CKTdoJob(CKTcircuit *, int , TSKtask *);
extern void CKTdump(CKTcircuit *, double, void *);
extern void CKTdump(CKTcircuit *, double, runDesc *);
extern int CKTsoaInit(void); extern int CKTsoaInit(void);
extern int CKTsoaCheck(CKTcircuit *); extern int CKTsoaCheck(CKTcircuit *);
#ifdef CIDER #ifdef CIDER

2
src/spicelib/analysis/cktacdum.c

@ -17,7 +17,7 @@ Author: 1985 Thomas L. Quarles
int int
CKTacDump(CKTcircuit *ckt, double freq, void *plot)
CKTacDump(CKTcircuit *ckt, double freq, runDesc *plot)
{ {
double *rhsold; double *rhsold;
double *irhsold; double *irhsold;

2
src/spicelib/analysis/cktdump.c

@ -30,7 +30,7 @@ TODO:
#endif #endif
void void
CKTdump(CKTcircuit *ckt, double ref, void *plot)
CKTdump(CKTcircuit *ckt, double ref, runDesc *plot)
{ {
IFvalue refData; IFvalue refData;
IFvalue valData; IFvalue valData;

Loading…
Cancel
Save