xspice bug fix, invoke EVTsetup(ckt) only when `reset'
This commit is contained in:
parent
92063d602a
commit
4aa17534fb
|
|
@ -1,3 +1,11 @@
|
|||
2012-01-02 Robert Larice
|
||||
* src/spicelib/analysis/cktdojob.c :
|
||||
xspice bug fix, invoke EVTsetup(ckt) only when `reset'
|
||||
|
||||
bug fix, tracker ID 3388916
|
||||
Segfault when combining digital models and breakpoint control
|
||||
https://sourceforge.net/tracker/?func=detail&aid=3388916&group_id=38962&atid=423915
|
||||
|
||||
2012-01-02 Robert Larice
|
||||
* src/frontend/error.c :
|
||||
controlled_exit() shall not block waiting for a keyboard press
|
||||
|
|
|
|||
|
|
@ -196,6 +196,7 @@ CKTdoJob(CKTcircuit *ckt, int reset, TSKtask *task)
|
|||
error = CKTic(ckt);
|
||||
if (!error){
|
||||
#ifdef XSPICE
|
||||
if(reset) {
|
||||
/* gtri - begin - 6/10/91 - wbk - Setup event-driven data */
|
||||
error = EVTsetup(ckt);
|
||||
if(error) {
|
||||
|
|
@ -204,6 +205,7 @@ CKTdoJob(CKTcircuit *ckt, int reset, TSKtask *task)
|
|||
return(error);
|
||||
}
|
||||
/* gtri - end - 6/10/91 - wbk - Setup event-driven data */
|
||||
}
|
||||
#endif
|
||||
error = analInfo[i]->an_func (ckt, reset);
|
||||
/* txl, cpl addition */
|
||||
|
|
|
|||
Loading…
Reference in New Issue