![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /etc/alternatives/mpi/openmpi/orte/mca/odls/ |
Upload File : |
/* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. * Copyright (c) 2004-2011 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, * University of Stuttgart. All rights reserved. * Copyright (c) 2004-2005 The Regents of the University of California. * All rights reserved. * Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved. * Copyright (c) 2011-2016 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2011-2012 Los Alamos National Security, LLC. * All rights reserved. * Copyright (c) 2014-2017 Intel, Inc. All rights reserved. * Copyright (c) 2018 Research Organization for Information Science * and Technology (RIST). All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ /** @file: */ #ifndef ORTE_MCA_ODLS_TYPES_H #define ORTE_MCA_ODLS_TYPES_H #include "orte_config.h" #include "orte/types.h" #include "opal/dss/dss_types.h" BEGIN_C_DECLS /* define the orted command flag type */ typedef uint8_t orte_daemon_cmd_flag_t; #define ORTE_DAEMON_CMD_T OPAL_UINT8 /* * Definitions needed for communication */ #define ORTE_DAEMON_CONTACT_QUERY_CMD (orte_daemon_cmd_flag_t) 1 #define ORTE_DAEMON_KILL_LOCAL_PROCS (orte_daemon_cmd_flag_t) 2 #define ORTE_DAEMON_SIGNAL_LOCAL_PROCS (orte_daemon_cmd_flag_t) 3 #define ORTE_DAEMON_ADD_LOCAL_PROCS (orte_daemon_cmd_flag_t) 4 #define ORTE_DAEMON_HEARTBEAT_CMD (orte_daemon_cmd_flag_t) 6 #define ORTE_DAEMON_EXIT_CMD (orte_daemon_cmd_flag_t) 7 #define ORTE_DAEMON_PROCESS_AND_RELAY_CMD (orte_daemon_cmd_flag_t) 9 #define ORTE_DAEMON_NULL_CMD (orte_daemon_cmd_flag_t) 11 /* commands for use by tools */ #define ORTE_DAEMON_REPORT_JOB_INFO_CMD (orte_daemon_cmd_flag_t) 14 #define ORTE_DAEMON_REPORT_NODE_INFO_CMD (orte_daemon_cmd_flag_t) 15 #define ORTE_DAEMON_REPORT_PROC_INFO_CMD (orte_daemon_cmd_flag_t) 16 #define ORTE_DAEMON_SPAWN_JOB_CMD (orte_daemon_cmd_flag_t) 17 #define ORTE_DAEMON_TERMINATE_JOB_CMD (orte_daemon_cmd_flag_t) 18 #define ORTE_DAEMON_HALT_VM_CMD (orte_daemon_cmd_flag_t) 19 #define ORTE_DAEMON_HALT_DVM_CMD (orte_daemon_cmd_flag_t) 20 #define ORTE_DAEMON_REPORT_JOB_COMPLETE (orte_daemon_cmd_flag_t) 21 /* request proc resource usage */ #define ORTE_DAEMON_TOP_CMD (orte_daemon_cmd_flag_t) 22 /* bootstrap */ #define ORTE_DAEMON_NAME_REQ_CMD (orte_daemon_cmd_flag_t) 23 #define ORTE_DAEMON_CHECKIN_CMD (orte_daemon_cmd_flag_t) 24 #define ORTE_TOOL_CHECKIN_CMD (orte_daemon_cmd_flag_t) 25 /* process msg command */ #define ORTE_DAEMON_PROCESS_CMD (orte_daemon_cmd_flag_t) 26 /* process called "errmgr.abort_procs" */ #define ORTE_DAEMON_ABORT_PROCS_CALLED (orte_daemon_cmd_flag_t) 28 /* nidmap for the DVM */ #define ORTE_DAEMON_DVM_NIDMAP_CMD (orte_daemon_cmd_flag_t) 29 /* add procs for the DVM */ #define ORTE_DAEMON_DVM_ADD_PROCS (orte_daemon_cmd_flag_t) 30 /* for debug purposes, get stack traces from all application procs */ #define ORTE_DAEMON_GET_STACK_TRACES (orte_daemon_cmd_flag_t) 31 /* for memory profiling */ #define ORTE_DAEMON_GET_MEMPROFILE (orte_daemon_cmd_flag_t) 32 /* request full topology string */ #define ORTE_DAEMON_REPORT_TOPOLOGY_CMD (orte_daemon_cmd_flag_t) 33 /* tell DVM daemons to cleanup resources from job */ #define ORTE_DAEMON_DVM_CLEANUP_JOB_CMD (orte_daemon_cmd_flag_t) 34 /* * Struct written up the pipe from the child to the parent. */ typedef struct { /* True if the child has died; false if this is just a warning to be printed. */ bool fatal; /* Relevant only if fatal==true */ int exit_status; /* Length of the strings that are written up the pipe after this struct */ int file_str_len; int topic_str_len; int msg_str_len; } orte_odls_pipe_err_msg_t; /* * Max length of strings from the orte_odls_pipe_err_msg_t */ #define ORTE_ODLS_MAX_FILE_LEN 511 #define ORTE_ODLS_MAX_TOPIC_LEN ORTE_ODLS_MAX_FILE_LEN END_C_DECLS #endif