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

Diff for /OpenXM_contrib2/asir2000/io/sio.c between version 1.17 and 1.19

version 1.17, 2002/10/03 03:37:46 version 1.19, 2003/01/28 08:38:59
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/sio.c,v 1.16 2002/10/03 01:12:46 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.18 2002/10/03 07:12:30 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include <setjmp.h>  #include <setjmp.h>
Line 315  void free_iofp(int s)
Line 315  void free_iofp(int s)
         r = &iofp[s];          r = &iofp[s];
 #if defined(VISUAL)  #if defined(VISUAL)
         if ( r->s ) close(r->s);          if ( r->s ) close(r->s);
 #elif !defined(MPI)  #elif !MPI
         if ( r->in ) fclose(r->in);          if ( r->in ) fclose(r->in);
         if ( r->out ) fclose(r->out);          if ( r->out ) fclose(r->out);
         if ( r->socket ) unlink(r->socket);          if ( r->socket ) unlink(r->socket);
 #endif  #endif
         r->in = r->out = 0; r->s = 0;          r->in = r->out = 0; r->s = 0;
 }  }
   
 #define LBUFSIZ BUFSIZ*10  
   
 int get_iofp(int s1,char *af_sock,int is_server)  int get_iofp(int s1,char *af_sock,int is_server)
 {  {

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.19

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