[BACK]Return to io.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows / engine2000

Diff for /OpenXM_contrib2/windows/engine2000/io.c between version 1.2 and 1.3

version 1.2, 2001/03/13 02:13:19 version 1.3, 2001/10/09 01:36:28
Line 342  void Init_IO()
Line 342  void Init_IO()
 void AsirMain(int argc, char **argv)  void AsirMain(int argc, char **argv)
 {  {
         DWORD tid;          DWORD tid;
         int ret;  
   
         hRead = (void *)atoi(__argv[1]);          hRead = (void *)atoi(__argv[1]);
         hWrite = (void *)atoi(__argv[2]);          hWrite = (void *)atoi(__argv[2]);
Line 378  void OxAsirMain(int argc, char **argv)
Line 377  void OxAsirMain(int argc, char **argv)
 {  {
         int create_message;          int create_message;
         int tid;          int tid;
         int ret;  
   
         ox_sock_id = atoi(__argv[1]);          ox_sock_id = atoi(__argv[1]);
         create_message = atoi(__argv[2]);          create_message = atoi(__argv[2]);
Line 410  void OxPlotMain(int argc, char **argv)
Line 408  void OxPlotMain(int argc, char **argv)
         DWORD tid;          DWORD tid;
         DWORD mypid;          DWORD mypid;
         char eventname[BUFSIZ];          char eventname[BUFSIZ];
         int ret;  
   
         ox_sock_id = atoi(argv[1]);          ox_sock_id = atoi(argv[1]);
         do_message = atoi(argv[2]);          do_message = atoi(argv[2]);
Line 446  void OxPlotMain(int argc, char **argv)
Line 443  void OxPlotMain(int argc, char **argv)
   
         /* process_args() increments argv */          /* process_args() increments argv */
         plot_argc = argc-5;          plot_argc = argc-5;
         plot_argv = argc+5;          plot_argv = argv+5;
         hComputingThread = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)ox_plot_main,NULL,0,&tid);          hComputingThread = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)ox_plot_main,NULL,0,&tid);
 //      ret = SetThreadPriority(hComputingThread,THREAD_PRIORITY_ABOVE_NORMAL);  //      ret = SetThreadPriority(hComputingThread,THREAD_PRIORITY_ABOVE_NORMAL);
 //      if ( !ret )  //      if ( !ret )
Line 558  void set_error(int id,char *reason,char *action)
Line 555  void set_error(int id,char *reason,char *action)
 }  }
   
 /* dummy functions */  /* dummy functions */
 reset_current_computation(){}  void reset_current_computation(){}
 set_selection(){}  void set_selection(){}
 reset_selection(){}  void reset_selection(){}
 set_busy(){}  void set_busy(){}
 reset_busy(){}  void reset_busy(){}

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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