~james-page/ubuntu/precise/openmpi1.5/new

« back to all changes in this revision

Viewing changes to orte/runtime/orte_globals.h

  • Committer: Bazaar Package Importer
  • Author(s): Manuel Prinz
  • Date: 2009-04-23 14:01:21 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090423140121-vsi3pqa6g30j4qiy
Tags: 1.3.2-1
* New upstream release. (Closes: #520597, #515116)
  - Manpage and VampirTrace patches removed, included upstream.
* Fixed build issues on Alpha. Huge thanks to Arthur Loiret for providing
  access to his machines for testing! (Closes: #510845, #517543)
* Fixed build issues on Sparc. (Closes: #519725)
* Fixed manpage-has-errors-from-man lintian warnings.
* Faked SONAME change by renaming library package. (Closes: #512616)
* Made libopenmpi-dev depend on libibverbs-dev. (Closes: #522153)
* Support for "nocheck" build option in debian/rules.
* Updated Standards-Version in debian/control.
* Changed section of libopenmpi-dbg to "debug".
* Updated debian/copyright.

* Dirk Eddelbuettel removed himself from Uploaders. The team thanks Dirk
  for his long-term contribution and effort to get Open MPI back to life.
  I personally thank Dirk for encouraging me to become a Debian Developer
  and his support and mentoring on that way and beyond.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 *                         University of Stuttgart.  All rights reserved.
10
10
 * Copyright (c) 2004-2005 The Regents of the University of California.
11
11
 *                         All rights reserved.
12
 
 * Copyright (c) 2007      Sun Microsystems, Inc.  All rights reserved.
 
12
 * Copyright (c) 2007-2009 Sun Microsystems, Inc.  All rights reserved.
13
13
 * Copyright (c) 2007      Cisco Systems, Inc.  All rights reserved.
14
14
 * $COPYRIGHT$
15
15
 * 
162
162
    /** Destination directory for the preloaded files 
163
163
        * If NULL then the absolute and relative paths are obeyed */
164
164
    char * preload_files_dest_dir;
 
165
    /* is being used on the local node */
 
166
    bool used_on_node;
165
167
} orte_app_context_t;
166
168
 
167
169
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_app_context_t);
174
176
    orte_std_cntr_t index;
175
177
    /** String node name */
176
178
    char *name;
 
179
    /* argv-like array of aliases for this node */
 
180
    char **alias;
177
181
    /* daemon on this node */
178
182
    struct orte_proc_t *daemon;
179
183
    /* whether or not this daemon has been launched */
395
399
ORTE_DECLSPEC extern bool orte_static_ports;
396
400
ORTE_DECLSPEC extern int32_t orte_contiguous_nodes;
397
401
ORTE_DECLSPEC extern bool orte_keep_fqdn_hostnames;
398
 
ORTE_DECLSPEC extern bool orte_tag_output;
399
402
ORTE_DECLSPEC extern bool orte_show_resolved_nodenames;
400
403
ORTE_DECLSPEC extern int orted_debug_failure;
401
404
ORTE_DECLSPEC extern int orted_debug_failure_delay;
417
420
ORTE_DECLSPEC extern int orte_exit_status;
418
421
ORTE_DECLSPEC extern bool orte_abnormal_term_ordered;
419
422
ORTE_DECLSPEC extern bool orte_shutdown_in_progress;
 
423
ORTE_DECLSPEC extern bool orte_job_term_ordered;
420
424
 
421
425
ORTE_DECLSPEC extern int orte_heartbeat_rate;
422
426
ORTE_DECLSPEC extern int orte_startup_timeout;
435
439
/* a clean output channel without prefix */
436
440
ORTE_DECLSPEC extern int orte_clean_output;
437
441
 
 
442
/* whether or not to forward SIGTSTP and SIGCONT signals */
 
443
ORTE_DECLSPEC extern bool orte_forward_job_control;
 
444
 
 
445
/* list of local children on a daemon */
 
446
ORTE_DECLSPEC extern opal_list_t orte_local_children;
 
447
/* list of job data for local children on a daemon */
 
448
ORTE_DECLSPEC extern opal_list_t orte_local_jobdata;
 
449
/* whether or not to forward SIGTSTP and SIGCONT signals */
 
450
ORTE_DECLSPEC extern bool orte_forward_job_control;
 
451
 
 
452
/* IOF controls */
 
453
ORTE_DECLSPEC extern bool orte_tag_output;
 
454
ORTE_DECLSPEC extern bool orte_timestamp_output;
 
455
ORTE_DECLSPEC extern char *orte_output_filename;
 
456
/* generate new xterm windows to display output from specified ranks */
 
457
ORTE_DECLSPEC extern char *orte_xterm;
 
458
 
438
459
#endif /* ORTE_DISABLE_FULL_SUPPORT */
439
460
 
440
461
END_C_DECLS