Changeset 104
- Timestamp:
- 05/18/16 15:51:27 (9 years ago)
- Location:
- trunk/pbs_drmaa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/pbs_drmaa/log_reader.c
r93 r104 357 357 { 358 358 fsd_log_info(("WT - Job %s killed before entering running state (%d).", job->job_id, job->state)); 359 360 #ifdef PBS_PROFESSIONAL 361 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_JOB_STATE, "F"); 362 #else 359 363 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_JOB_STATE, "C"); 364 #endif 365 360 366 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_MTIME, timestamp_unix); 361 367 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_EXIT_STATUS, "-101"); … … 378 384 char *token = NULL; 379 385 386 #ifdef PBS_PBS_PROFESSIONAL 387 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_JOB_STATE, "F"); 388 #else 380 389 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_JOB_STATE, "C"); 390 #endif 381 391 attribs = pbsdrmaa_add_attr(attribs, PBSDRMAA_MTIME, timestamp_unix); 382 392 -
trunk/pbs_drmaa/pbs_attrib.h
r71 r104 81 81 #define PBSDRMAA_SERVER "server" 82 82 #define PBSDRMAA_COMMENT "comment" 83 #define PBSDRMAA_EXIT_STATUS "exit_status"84 83 #define PBSDRMAA_START_TIME "start_time" 85 84 #define PBSDRMAA_EXTENSION "extension" … … 88 87 #define PBSDRMAA_NODE_PROPERTIES "pbsdrmaa.node_properties" 89 88 #define PBSDRMAA_CUSTOM_RESOURCES "pbsdrmaa.custom_resources" 89 90 #ifdef PBS_PROFESSIONAL 91 # define PBSDRMAA_EXIT_STATUS "Exit_status" 92 #else 93 # define PBSDRMAA_EXIT_STATUS "exit_status" 94 #endif 90 95 91 96 typedef enum {
Note: See TracChangeset
for help on using the changeset viewer.