Example #1
0
void job_queue_node_free(job_queue_node_type * node) {
  job_queue_node_free_data(node);
  job_queue_node_free_error_info(node);
  util_safe_free(node->run_path);

  // Since the type of the callback_arg is void* it should maybe be
  // registered with a private destructor - or the type should be
  // changed to arg_pack?
  if (arg_pack_is_instance( node->callback_arg ))
      arg_pack_free( node->callback_arg );

  free(node);
}
Example #2
0
void job_queue_node_fscanf_EXIT( job_queue_node_type * node ) {
  job_queue_node_free_error_info( node );
  if (node->exit_file) {
    if (util_file_exists( node->exit_file )) {
      char * xml_buffer = util_fread_alloc_file_content( node->exit_file, NULL);

      node->failed_job     = __alloc_tag_content( xml_buffer , "job" );
      node->error_reason   = __alloc_tag_content( xml_buffer , "reason" );
      node->stderr_capture = __alloc_tag_content( xml_buffer , "stderr");
      node->stderr_file    = __alloc_tag_content( xml_buffer , "stderr_file");

      free( xml_buffer );
    } else
      node->failed_job = util_alloc_sprintf("EXIT file:%s not found - load failure?" , node->exit_file);
  }
}
Example #3
0
void job_queue_node_free(job_queue_node_type * node) {
  job_queue_node_free_data(node);
  job_queue_node_free_error_info(node);
  util_safe_free(node->run_path);
  free(node);
}