[BACK]Return to miscf.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/miscf.c between version 1.25 and 1.29

version 1.25, 2004/11/16 01:47:31 version 1.29, 2013/06/13 07:45:28
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.24 2004/10/27 08:21:47 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.28 2010/12/25 23:10:15 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
   #include <string.h>
 #if !defined(VISUAL) && defined(DO_PLOT)  #if !defined(VISUAL) && defined(DO_PLOT)
 #include <X11/Xlib.h>  #include <X11/Xlib.h>
 #include <X11/cursorfont.h>  #include <X11/cursorfont.h>
 #endif  #endif
   
 #if defined(VISUAL)  #if defined(VISUAL)
   #include <direct.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <windows.h>  #include <windows.h>
   #else
   #include <unistd.h>
   #include <sys/param.h>
 #endif  #endif
   
   void Pgetcwd(), Pchdir();
 void Pset_secure_mode();  void Pset_secure_mode();
 void Pset_secure_flag();  void Pset_secure_flag();
 void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap();  void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap();
Line 79  void Ptest();
Line 85  void Ptest();
 void delete_history(int,int);  void delete_history(int,int);
   
 struct ftab misc_tab[] = {  struct ftab misc_tab[] = {
           {"pwd",Pgetcwd,0},
           {"chdir",Pchdir,1},
         {"set_secure_mode",Pset_secure_mode,-1},          {"set_secure_mode",Pset_secure_mode,-1},
         {"set_secure_flag",Pset_secure_flag,-2},          {"set_secure_flag",Pset_secure_flag,-2},
         {"module_list",Pmodule_list,0},          {"module_list",Pmodule_list,0},
Line 118  struct ftab misc_tab[] = {
Line 126  struct ftab misc_tab[] = {
         {0,0,0},          {0,0,0},
 };  };
   
   void Pgetcwd(STRING *rp)
   {
           char *r;
   #if defined(VISUAL)
           char buf[_MAX_PATH];
           _getcwd(buf, _MAX_PATH);
   #else
           char buf[MAXPATHLEN];
           getcwd(buf, MAXPATHLEN);
   #endif
           r = (char *)MALLOC_ATOMIC(strlen(buf)+1);
           strcpy(r,buf);
           MKSTR(*rp,r);
   }
   
   void Pchdir(NODE arg, Q *rp)
   {
           char *dir = BDY((STRING)ARG0(arg));
   #if defined(VISUAL)
           int status = _chdir(dir);
   #else
           int status = chdir(dir);
   #endif
           STOQ(status,*rp);
   }
   
 void Pset_secure_mode(NODE arg,Q *rp)  void Pset_secure_mode(NODE arg,Q *rp)
 {  {
         int s;          int s;
Line 264  Q *rp;
Line 298  Q *rp;
 void Pquit(rp)  void Pquit(rp)
 pointer *rp;  pointer *rp;
 {  {
         if ( !NEXT(asir_infile) )          if ( asir_infile && NEXT(asir_infile) && asir_infile->ready_for_longjmp )
                 asir_terminate(2);                  LONGJMP(asir_infile->jmpbuf,1);
         else {          else {
                 closecurrentinput();                  closecurrentinput();
                 if ( !asir_infile->fp && strcmp(asir_infile->name,"string") )                  asir_terminate(2);
                         asir_terminate(2);  
         }          }
         *rp = 0;          *rp = 0;
 }  }
Line 322  void Pheap(arg,rp)
Line 355  void Pheap(arg,rp)
 NODE arg;  NODE arg;
 Q *rp;  Q *rp;
 {  {
         int h0,h;          size_t h0,h;
           unsigned int u,l;
           N n;
         void GC_expand_hp(int);          void GC_expand_hp(int);
   
         h0 = get_heapsize();          h0 = get_heapsize();
Line 332  Q *rp;
Line 367  Q *rp;
                         GC_expand_hp(h-h0);                          GC_expand_hp(h-h0);
         }          }
         h = get_heapsize();          h = get_heapsize();
         STOQ(h,*rp);          if(sizeof(size_t)>sizeof(int)) {
                   u = h>>(sizeof(int)*CHAR_BIT); l = h&(~0);
                   if ( !u ) STOQ(l,*rp);
                   else {
                           n = NALLOC(2); PL(n)=2; BD(n)[0] = l; BD(n)[1] = u;
                           NTOQ(n,1,*rp);
                   }
           }else {
                   STOQ(h,*rp);
           }
 }  }
   
 unsigned int get_asir_version();  unsigned int get_asir_version();

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.29

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>