/* * Copyright (c) 2004-2010 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-2020 Cisco Systems, Inc. All rights reserved * Copyright (c) 2010-2011 Oak Ridge National Labs. All rights reserved. * Copyright (c) 2011-2013 Los Alamos National Security, LLC. * All rights reserved. * Copyright (c) 2013-2020 Intel, Inc. All rights reserved. * Copyright (c) 2014 Research Organization for Information Science * and Technology (RIST). All rights reserved. * Copyright (c) 2020 IBM Corporation. All rights reserved. * Copyright (c) 2021-2024 Nanook Consulting. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ #include "prte_config.h" #include "constants.h" #include #if HAVE_SYS_TYPES_H # include #endif /* HAVE_SYS_TYPES_H */ #ifdef HAVE_UNISTD_H # include #endif /* HAVE_UNISTD_H */ #if HAVE_SYS_TYPES_H # include #endif /* HAVE_SYS_TYPES_H */ #if HAVE_SYS_STAT_H # include #endif /* HAVE_SYS_STAT_H */ #ifdef HAVE_DIRENT_H # include #endif /* HAVE_DIRENT_H */ #include #include #include #include "src/mca/base/pmix_base.h" #include "src/mca/mca.h" #include "src/util/pmix_argv.h" #include "src/util/pmix_basename.h" #include "src/util/pmix_os_dirpath.h" #include "src/util/pmix_output.h" #include "src/util/pmix_printf.h" #include "src/util/name_fns.h" #include "src/util/proc_info.h" #include "src/util/session_dir.h" #include "src/runtime/prte_globals.h" #include "src/runtime/prte_locks.h" #include "src/runtime/prte_wait.h" #include "src/runtime/runtime.h" #include "src/mca/ess/ess.h" #include "src/mca/odls/odls.h" #include "src/mca/plm/plm.h" #include "src/mca/state/state.h" #include "src/mca/errmgr/base/base.h" #include "src/mca/errmgr/base/errmgr_private.h" #include "src/mca/errmgr/errmgr.h" /* * Public interfaces */ void prte_errmgr_base_log(int error_code, char *filename, int line) { char *errstring = NULL; errstring = (char *) PRTE_ERROR_NAME(error_code); if (NULL == errstring) { /* if the error is silent, say nothing */ return; } pmix_output(0, "%s PRTE_ERROR_LOG: %s in file %s at line %d", PRTE_NAME_PRINT(PRTE_PROC_MY_NAME), errstring, filename, line); }