Changeset 6b7828 in git
- Timestamp:
- Sep 11, 2013, 5:06:31 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 1e5bbd70c45325682c85dd82ac76bdd5d0cdecbf
- Parents:
- 152ec74edbee09b172a256b0a6b596d4c76046ebfab2ac77da13bbb52cf53fb19b26eac2b7f4d24c
- Files:
-
- 2 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/links/s_buff.h
r152ec74 r6b7828 30 30 int s_isready(s_buff F); 31 31 int s_iseof(s_buff F); 32 33 extern sigset_t ssi_sigmask; // set in ssiLink.cc34 extern sigset_t ssi_oldmask; // set in ssiLink.cc35 32 #endif -
Singular/links/silink.cc
r152ec74 r6b7828 136 136 if (SI_LINK_OPEN_P(l)) 137 137 { 138 if (l->m-> Kill != NULL) l->m->Kill(l);139 else if (l->m->Close != NULL) l->m->Close(l);140 }138 if (l->m->Close != NULL) l->m->Close(l); 139 } 140 if ((l->data != NULL) && (l->m->Kill != NULL)) l->m->Kill(l); 141 141 omFree((ADDRESS)l->name); 142 142 omFree((ADDRESS)l->mode); -
configure.ac
rfab2ac7 r6b7828 42 42 AC_CHECK_HEADERS(unistd.h iostream.h sys/time.h sys/times.h asm/sigcontext.h) 43 43 44 AC_CHECK_FUNCS(readlink getcwd getwd setenv putenv pselect)44 AC_CHECK_FUNCS(readlink getcwd getwd setenv putenv) 45 45 46 46 -
factory/cf_gcd_smallp.cc
rfab2ac7 r6b7828 737 737 if (((degree (ppCoF,1)+degree (ppH,1) == bound1) && 738 738 (degree (ppCoG,1)+degree (ppH,1) == bound2) && 739 terminationTest (ppA, ppB, ppCoF, ppCoG, ppH)) || 739 terminationTest (ppA, ppB, ppCoF, ppCoG, ppH)) || 740 740 (fdivides (ppH, ppA, ppCoF) && fdivides (ppH, ppB, ppCoG))) 741 741 { … … 1722 1722 1723 1723 N= convertNmod_mat_t2FacCFMatrix (FLINTN); 1724 delete N; 1724 1725 nmod_mat_clear (FLINTN); 1725 1726 #else … … 1731 1732 } 1732 1733 mat_zz_p *NTLN= convertFacCFMatrix2NTLmat_zz_p(*N); 1734 delete N; 1733 1735 long rk= gauss (*NTLN); 1734 1736 1735 1737 N= convertNTLmat_zz_p2FacCFMatrix (*NTLN); 1738 delete NTLN; 1736 1739 #endif 1737 1740 … … 1809 1812 long rk= gauss (*NTLN); 1810 1813 #endif 1814 delete N; 1811 1815 if (rk != M.columns()) 1812 1816 { … … 1814 1818 nmod_mat_clear (FLINTN); 1815 1819 #endif 1816 delete N;1817 1820 return CFArray(); 1818 1821 } … … 1822 1825 #else 1823 1826 N= convertNTLmat_zz_p2FacCFMatrix (*NTLN); 1827 delete NTLN; 1824 1828 #endif 1825 1829 CFArray A= readOffSolution (*N, rk); -
kernel/mod2.h.cmake.in
r152ec74 r6b7828 261 261 * Miscellanous Defines 262 262 ******************************************************************/ 263 /* Under HPUX 9, system(...) returns -1 if SIGCHLD does not equal264 SIG_DFL. However, if it stays at SIG_DFL we get zombie processes265 for terminated childs generated by fork. Therefors some special treatment266 is necessary */267 #ifdef HPUX_9268 #include <stdlib.h>269 #define system hpux9_system270 #ifdef __cplusplus271 extern "C" {272 #endif273 int hpux9_system(const char* system);274 #ifdef __cplusplus275 }276 #endif277 #endif278 279 263 #ifndef HAVE_LIBPARSER 280 264 # undef YYLPDEBUG -
kernel/structs.h
r152ec74 r6b7828 89 89 extern "C" { 90 90 #endif 91 void m2_end(int i) __attribute__((noreturn));91 void m2_end(int i); 92 92 #ifdef __cplusplus 93 93 } -
libpolys/polys/ext_fields/transext.cc
rfab2ac7 r6b7828 1793 1793 if (p_IsOne(num_f, ntRing)) 1794 1794 { 1795 //DEN(result)=NULL;// Alloc01796 COM(result) = 0;1795 DEN(result)=NULL; 1796 //COM(result) = 0; 1797 1797 p_Delete(&num_f,ntRing); 1798 1798 }
Note: See TracChangeset
for help on using the changeset viewer.