- Timestamp:
- 07/25/13 07:38:44 (12 years ago)
- Location:
- trunk/pbs_drmaa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pbs_drmaa/log_reader.c
r85 r93 359 359 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_JOB_STATE, "C"); 360 360 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_MTIME, timestamp_unix); 361 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_EXIT_STATUS, "- 2");361 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_EXIT_STATUS, "-101"); 362 362 } 363 363 else -
trunk/pbs_drmaa/session.c
r85 r93 95 95 self = (pbsdrmaa_session_t*)fsd_drmaa_session_new(contact); 96 96 fsd_realloc( self, 1, pbsdrmaa_session_t ); 97 98 fsd_mutex_lock( &self->super.mutex ); 99 97 100 self->super_wait_thread = NULL; 98 101 … … 125 128 self->connection_max_lifetime = 30; /* 30 seconds */ 126 129 130 fsd_mutex_unlock( &self->super.mutex ); 127 131 } 128 132 EXCEPT_DEFAULT … … 130 134 if( self ) 131 135 { 136 fsd_mutex_unlock( &self->super.mutex ); 132 137 self->super.destroy( &self->super ); 133 138 self = NULL;
Note: See TracChangeset
for help on using the changeset viewer.