![]() 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/opal/util/ |
Upload File : |
/* * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ /** * @file * * Per https://svn.open-mpi.org/trac/ompi/ticket/933, use a * combination of $PWD and getcwd() to find the current working * directory. */ #ifndef OPAL_GETCWD_H #define OPAL_GETCWD_H #include "opal_config.h" BEGIN_C_DECLS /** * Per https://svn.open-mpi.org/trac/ompi/ticket/933, use a * combination of $PWD and getcwd() to find the current working * directory. * * Use $PWD instead of getcwd() a) if $PWD exists and b) is a valid * synonym for the results from getcwd(). If both of these conditions * are not met, just fall back and use the results of getcwd(). * * @param buf Caller-allocated buffer to put the result * @param size Length of the buf array * * @retval OPAL_ERR_OUT_OF_RESOURCE If internal malloc() fails. * @retval OPAL_ERR_TEMP_OUT_OF_RESOURCE If the supplied buf buffer * was not long enough to handle the result. * @retval OPAL_ERR_BAD_PARAM If buf is NULL or size>INT_MAX * @retval OPAL_ERR_IN_ERRNO If an other error occurred * @retval OPAL_SUCCESS If all went well and a valid value was placed * in the buf buffer. */ OPAL_DECLSPEC int opal_getcwd(char *buf, size_t size); END_C_DECLS #endif /* OPAL_GETCWD_H */