Changeset c599b4 in git


Ignore:
Timestamp:
Nov 11, 2010, 2:40:17 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
e0cd1d27719ec0dc7eb0f1b11bcd0a5b5857b3a1
Parents:
018dec2431a0bdd78906e180ed10c7a726c3640f
Message:
listall, piShowProcList: only for debugging


git-svn-id: file:///usr/local/Singular/svn/trunk@13636 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/extra.cc

    r018dec rc599b4  
    25252525      else
    25262526  #endif
     2527  #if 0 /* debug only */
    25272528  /*==================== listall ===================================*/
    25282529      if(strcmp(sys_cmd,"listall")==0)
     
    25342535      }
    25352536      else
     2537  #endif
     2538  #if 0 /* debug only */
    25362539  /*==================== proclist =================================*/
    25372540      if(strcmp(sys_cmd,"proclist")==0)
     
    25412544      }
    25422545      else
     2546  #endif
    25432547  /* ==================== newton ================================*/
    25442548  #ifdef HAVE_NEWTON
  • Singular/iplib.cc

    r018dec rc599b4  
    10961096
    10971097/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
     1098#if 0 /* debug only */
    10981099void piShowProcList()
    10991100{
     
    11291130  }
    11301131}
     1132#endif
    11311133
    11321134/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
  • Singular/misc_ip.cc

    r018dec rc599b4  
    8080    q=(*n)/d; r=(*n)%d;
    8181  }
    82 }
    83 
    84 /* returns an object of type lists which contains the entries
    85    theInts[0..(length-1)] as INT_CMDs */
    86 lists makeListsObject(const int* theInts, int length)
    87 {
    88   lists L=(lists)omAllocBin(slists_bin);
    89   L->Init(length);
    90   for (int i = 0; i < length; i++)
    91     { L->m[i].rtyp = INT_CMD; L->m[i].data = (void*)theInts[i]; }
    92   return L;
    9382}
    9483
     
    924913#endif
    925914
     915#if 0
    926916void listall(int showproc)
    927917{
     
    1007997}
    1008998#endif
     999#endif
    10091000
    10101001#include <sys/types.h>
Note: See TracChangeset for help on using the changeset viewer.