=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/io/sio.c,v retrieving revision 1.13 retrieving revision 1.25 diff -u -p -r1.13 -r1.25 --- OpenXM_contrib2/asir2000/io/sio.c 2001/12/21 08:23:14 1.13 +++ OpenXM_contrib2/asir2000/io/sio.c 2012/12/17 07:20:45 1.25 @@ -44,10 +44,10 @@ * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. - * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.12 2001/10/09 01:36:21 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/io/sio.c,v 1.24 2011/02/06 07:07:39 ohara Exp $ */ #include "ca.h" -#include "setjmp.h" +#include #include "ox.h" #if defined(VISUAL) #include @@ -76,6 +76,10 @@ struct IOFP iofp[MAXIOFP]; void init_socket(void); +#if !defined(VISUAL) +#define closesocket(s) (close((s))) +#endif + int getremotesocket(int s) { return iofp[s].s; @@ -156,17 +160,17 @@ int try_bind_listen(int use_unix,char *port_str) } if (bind(service, saddr, len) < 0) { perror("in bind"); - close(service); + closesocket(service); return -1; } if (getsockname(service,saddr, &len) < 0) { perror("in getsockname"); - close(service); + closesocket(service); return -1; } if (listen(service, SOCKQUEUELENGTH) < 0) { perror("in listen"); - close(service); + closesocket(service); return -1; } return service; @@ -207,7 +211,7 @@ int try_accept(int af_unix,int s) } if ( i == 10 ) c = -1; - close(s); + closesocket(s); return c; } @@ -241,6 +245,8 @@ int try_connect(int use_unix,char *host,char *port_str } else #endif /* VISUAL */ { + if ( !host ) + host = "127.0.0.1"; if ( (s = socket(AF_INET,SOCK_STREAM,0)) < 0 ) { perror("socket"); return -1; @@ -261,7 +267,7 @@ int try_connect(int use_unix,char *host,char *port_str if ( connect(s,saddr,len) >= 0 ) break; else { - close(s); + closesocket(s); #if defined(VISUAL) Sleep(100); #else @@ -311,22 +317,24 @@ void free_iofp(int s) struct IOFP *r; r = &iofp[s]; - r->in = r->out = 0; r->s = 0; -#if !defined(VISUAL) - if ( r->socket ) - unlink(r->socket); +#if defined(VISUAL) + if ( r->s ) closesocket(r->s); +#elif !defined(MPI) + if ( r->in ) fclose(r->in); + if ( r->out ) fclose(r->out); + if ( r->socket ) unlink(r->socket); #endif + r->inbuf = r->outbuf = 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 i; unsigned char c,rc; extern int mpi_myid; -#if MPI +#if defined(MPI) iofp[s1].s = s1; if ( mpi_myid == s1 ) { iofp[s1].in = 0; @@ -351,8 +359,8 @@ int get_iofp(int s1,char *af_sock,int is_server) iofp[i].in = fdopen(s1,"r"); iofp[i].out = fdopen(s1,"w"); #if !defined(__CYGWIN__) - setbuffer(iofp[i].in,(char *)malloc(LBUFSIZ),LBUFSIZ); - setbuffer(iofp[i].out,(char *)malloc(LBUFSIZ),LBUFSIZ); + setbuffer(iofp[i].in,iofp[i].inbuf = (char *)MALLOC_ATOMIC(LBUFSIZ),LBUFSIZ); + setbuffer(iofp[i].out,iofp[i].outbuf = (char *)MALLOC_ATOMIC(LBUFSIZ),LBUFSIZ); #endif #endif if ( little_endian )