Changeset 9dd25c in git


Ignore:
Timestamp:
Feb 19, 2021, 5:13:29 PM (2 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
3b212ab03450b46ee5eef6ea6b9d9d5a91b246b1
Parents:
6993036b12d3795242f9e55fd0dad291a8bfe1e5
Message:
cygwin port: error handling
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/cntrlc.cc

    r6993036 r9dd25c  
    542542#endif
    543543#endif
    544 // factory error handling: -----------------------------------------------
    545   factoryError=WerrorS;
    546544
    547545// signal handler -------------------------------------------------------
  • Singular/extra.cc

    r6993036 r9dd25c  
    32693269          Print("EZGCD_P:%d (use EZGCD_P for gcd of polynomials in char p)\n",isOn(SW_USE_EZGCD_P));
    32703270          Print("CRGCD:%d (use chinese Remainder for gcd of polynomials in char 0)\n",isOn(SW_USE_CHINREM_GCD));
     3271          #ifndef __CYGWIN__
    32713272          Print("homog:%d (use homog. test for factorization of polynomials)\n",singular_homog_flag);
     3273          #endif
    32723274          return FALSE;
    32733275        }
     
    32853287          if (strcmp(s,"EZGCD_P")==0) { if (d) On(SW_USE_EZGCD_P); else Off(SW_USE_EZGCD_P); } else
    32863288          if (strcmp(s,"CRGCD")==0) { if (d) On(SW_USE_CHINREM_GCD); else Off(SW_USE_CHINREM_GCD); } else
     3289          #ifndef __CYGWIN__
    32873290          if (strcmp(s,"homog")==0) { if (d) singular_homog_flag=1; else singular_homog_flag=0; } else
     3291          #endif
    32883292          return TRUE;
    32893293          return FALSE;
  • Singular/misc_ip.cc

    r6993036 r9dd25c  
    14781478  }
    14791479  // interpreter error handling
     1480  #ifndef __CYGWIN__
    14801481  factoryError=callWerrorS; // to honour later changes of variable WerrorS
     1482  #endif
    14811483  errorreported = 0;
    14821484}
Note: See TracChangeset for help on using the changeset viewer.