[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.27 and 1.34

version 1.27, 2008/08/26 16:17:03 version 1.34, 2015/08/06 10:01:52
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.26 2006/02/08 02:11:19 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.33 2015/03/16 00:08:32 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include <string.h>  #include <string.h>
 #if !defined(VISUAL) && defined(DO_PLOT)  #if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__) && 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) || defined(__MINGW32__) || defined(__MINGW64__)
   #include <direct.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <windows.h>  #include <windows.h>
 #else  #else
Line 82  void Pmodule_definedp();
Line 83  void Pmodule_definedp();
 void Ptest();  void Ptest();
   
 void delete_history(int,int);  void delete_history(int,int);
   void grab_pointer();
   
 struct ftab misc_tab[] = {  struct ftab misc_tab[] = {
 #if !defined(VISUAL)  
         {"pwd",Pgetcwd,0},          {"pwd",Pgetcwd,0},
         {"chdir",Pchdir,1},          {"chdir",Pchdir,1},
 #endif  
         {"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 118  struct ftab misc_tab[] = {
         {"hex_dump",Phex_dump,2},          {"hex_dump",Phex_dump,2},
         {"peek",Ppeek,1},          {"peek",Ppeek,1},
         {"poke",Ppoke,2},          {"poke",Ppoke,2},
 #if !defined(VISUAL) && defined(DO_PLOT)  #if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__) && defined(DO_PLOT)
         {"xpause",Pxpause,0},          {"xpause",Pxpause,0},
 #endif  #endif
 #if 0  #if 0
Line 127  struct ftab misc_tab[] = {
Line 127  struct ftab misc_tab[] = {
         {0,0,0},          {0,0,0},
 };  };
   
 #if !defined(VISUAL)  
 void Pgetcwd(STRING *rp)  void Pgetcwd(STRING *rp)
 {  {
         char *r;          char *r;
   #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
           char buf[_MAX_PATH];
           _getcwd(buf, _MAX_PATH);
   #else
         char buf[MAXPATHLEN];          char buf[MAXPATHLEN];
         getcwd(buf, MAXPATHLEN);          getcwd(buf, MAXPATHLEN);
   #endif
         r = (char *)MALLOC_ATOMIC(strlen(buf)+1);          r = (char *)MALLOC_ATOMIC(strlen(buf)+1);
         strcpy(r,buf);          strcpy(r,buf);
         MKSTR(*rp,r);          MKSTR(*rp,r);
Line 141  void Pgetcwd(STRING *rp)
Line 145  void Pgetcwd(STRING *rp)
 void Pchdir(NODE arg, Q *rp)  void Pchdir(NODE arg, Q *rp)
 {  {
         char *dir = BDY((STRING)ARG0(arg));          char *dir = BDY((STRING)ARG0(arg));
   #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
           int status = _chdir(dir);
   #else
         int status = chdir(dir);          int status = chdir(dir);
   #endif
         STOQ(status,*rp);          STOQ(status,*rp);
 }  }
 #endif  
   
 void Pset_secure_mode(NODE arg,Q *rp)  void Pset_secure_mode(NODE arg,Q *rp)
 {  {
Line 202  Q *rp;
Line 209  Q *rp;
         int ms;          int ms;
   
         ms = QTOS((Q)ARG0(arg));          ms = QTOS((Q)ARG0(arg));
 #if defined(VISUAL)  #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
         Sleep(ms);          Sleep(ms);
 #else  #else
         usleep(ms*1000);          usleep(ms*1000);
Line 270  NODE arg;
Line 277  NODE arg;
 STRING *rp;  STRING *rp;
 {  {
         char *e,*f;          char *e,*f;
         int len;          size_t len;
   
         e = (char *)getenv(BDY((STRING)ARG0(arg)));          e = (char *)getenv(BDY((STRING)ARG0(arg)));
         if ( e ) {          if ( e ) {
Line 349  void Pheap(arg,rp)
Line 356  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 359  Q *rp;
Line 368  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 ) UTOQ(l,*rp);
                   else {
                           n = NALLOC(2); PL(n)=2; BD(n)[0] = l; BD(n)[1] = u;
                           NTOQ(n,1,*rp);
                   }
           }else {
                   UTOQ(h,*rp);
           }
 }  }
   
 unsigned int get_asir_version();  unsigned int get_asir_version();
Line 430  Q *rp;
Line 448  Q *rp;
                 s = "";                  s = "";
         else          else
                 s = BDY((STRING)ARG0(arg));                  s = BDY((STRING)ARG0(arg));
         toplevel(s);          goto_toplevel(s);
         *rp = 0;          *rp = 0;
 }  }
   
Line 447  Q *rp;
Line 465  Q *rp;
         code = QTOS((Q)ARG0(arg));          code = QTOS((Q)ARG0(arg));
         reason = BDY((STRING)ARG1(arg));          reason = BDY((STRING)ARG1(arg));
         action = BDY((STRING)ARG2(arg));          action = BDY((STRING)ARG2(arg));
 #if defined(VISUAL)  #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
         set_error(code,reason,action);          set_error(code,reason,action);
 #endif  #endif
         error("");          error("");
Line 556  Q *rp;
Line 574  Q *rp;
         STOQ(ret,*rp);          STOQ(ret,*rp);
 }  }
   
 #if !defined(VISUAL) && defined(DO_PLOT)  #if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__) && defined(DO_PLOT)
 void Pxpause(rp)  void Pxpause(rp)
 Q *rp;  Q *rp;
 {  {
Line 592  init_display()
Line 610  init_display()
         rootwin = RootWindow(display,DefaultScreen(display));          rootwin = RootWindow(display,DefaultScreen(display));
 }  }
   
 grab_pointer()  void grab_pointer()
 {  {
         XEvent ev;          XEvent ev;
         static Cursor cursor;          static Cursor cursor;
Line 613  grab_pointer()
Line 631  grab_pointer()
   
 void Psend_progress(NODE arg,Q *rp)  void Psend_progress(NODE arg,Q *rp)
 {  {
 #if defined(VISUAL)  #if defined(VISUAL) || defined(__MINGW32__) || defined(__MINGW64__)
         short per;          short per;
         char *msg;          char *msg;
   

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.34

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