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

Diff for /OpenXM_contrib2/asir2000/io/ox_asir.c between version 1.67 and 1.68

version 1.67, 2010/04/23 04:44:52 version 1.68, 2010/12/12 07:38:00
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * 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/io/ox_asir.c,v 1.66 2008/11/27 08:27:04 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.67 2010/04/23 04:44:52 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 122  void ox_mpi_master_init() {
Line 122  void ox_mpi_master_init() {
                 /* ordering information is not exchanged */                  /* ordering information is not exchanged */
                 /* idx should be equal to i */                  /* idx should be equal to i */
                 idx = get_iofp(i,0,0);                  idx = get_iofp(i,0,0);
                 register_server(0,idx,idx);                  register_server(0,idx,idx,-1);
         }          }
 }  }
   
Line 135  void ox_mpi_slave_init() {
Line 135  void ox_mpi_slave_init() {
                 /* ordering information is not exchanged */                  /* ordering information is not exchanged */
                 /* idx should be equal to i */                  /* idx should be equal to i */
                 idx = get_iofp(i,0,0);                  idx = get_iofp(i,0,0);
                 register_server(0,idx,idx);                  register_server(0,idx,idx,-1);
         }          }
         asir_OperandStackSize = BUFSIZ;          asir_OperandStackSize = BUFSIZ;
         asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj));          asir_OperandStack = (Obj *)CALLOC(asir_OperandStackSize,sizeof(Obj));
Line 1081  void ox_io_init() {
Line 1081  void ox_io_init() {
         read_char(iofp[0].in,&rc);          read_char(iofp[0].in,&rc);
         iofp[0].conv = c == rc ? 0 : 1;          iofp[0].conv = c == rc ? 0 : 1;
         /* XXX; for raw I/O */          /* XXX; for raw I/O */
         register_server(0,0,0);          register_server(0,0,0,-1);
 }  }
   
 #if !defined(VISUAL)  #if !defined(VISUAL)

Legend:
Removed from v.1.67  
changed lines
  Added in v.1.68

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