Changeset 58 for trunk/pbs_drmaa
- Timestamp:
- 01/08/12 19:13:15 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pbs_drmaa/session.c
r53 r58 30 30 #include <sys/types.h> 31 31 #include <fcntl.h> 32 #include <signal.h> 32 33 33 34 #include <pbs_ifl.h> … … 125 126 int tries_left = self->max_retries_count; 126 127 int sleep_time = 1; 128 /*ignore SIGPIPE - otheriwse pbs_disconnect cause the program to exit */ 129 signal(SIGPIPE, SIG_IGN); 127 130 retry_connect: /* Life... */ 128 131 self->pbs_conn = pbs_connect( self->super.contact );
Note: See TracChangeset
for help on using the changeset viewer.