[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.28 and 1.31

version 1.28, 2001/10/05 01:38:21 version 1.31, 2001/10/06 00:55:04
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.27 2001/09/20 23:11:42 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox_asir.c,v 1.30 2001/10/05 10:23:06 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 706  void ox_asir_init(int argc,char **argv)
Line 706  void ox_asir_init(int argc,char **argv)
                 fclose(ifp);                  fclose(ifp);
         }          }
         input_init(0,"string");          input_init(0,"string");
 #if !MPI  /* XXX Windows compatibility */
         ox_io_init();          ox_io_init();
 #endif  
         create_my_mathcap("ox_asir");          create_my_mathcap("ox_asir");
 }  }
   
Line 718  void ox_io_init() {
Line 717  void ox_io_init() {
         int i;          int i;
   
         /* XXX : ssh forwards stdin to a remote host */          /* XXX : ssh forwards stdin to a remote host */
   #if !defined(VISUAL)
 #if defined(linux) || defined(__NeXT__) || defined(ultrix)  #if defined(linux) || defined(__NeXT__) || defined(ultrix)
 #include <sys/param.h>  #include <sys/param.h>
                         close(0);                          close(0);
Line 731  void ox_io_init() {
Line 731  void ox_io_init() {
                         close(0);                          close(0);
                         for ( i = 5; i < rl.rlim_cur; i++ )                          for ( i = 5; i < rl.rlim_cur; i++ )
                                 close(i);                                  close(i);
   #endif
 #endif  #endif
   
         I_am_server = 1;          I_am_server = 1;

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.31

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