Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-22 10:47:27

0001 /*
0002  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
0003  *                         University Research and Technology
0004  *                         Corporation.  All rights reserved.
0005  * Copyright (c) 2004-2006 The University of Tennessee and The University
0006  *                         of Tennessee Research Foundation.  All rights
0007  *                         reserved.
0008  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
0009  *                         University of Stuttgart.  All rights reserved.
0010  * Copyright (c) 2004-2005 The Regents of the University of California.
0011  *                         All rights reserved.
0012  * Copyright (c) 2008      Sun Microsystems, Inc.  All rights reserved.
0013  * Copyright (c) 2019-2020 Intel, Inc.  All rights reserved.
0014  * Copyright (c) 2022      Nanook Consulting.  All rights reserved.
0015  * $COPYRIGHT$
0016  *
0017  * Additional copyrights may follow
0018  *
0019  * $HEADER$
0020  */
0021 
0022 /** @file:
0023  *
0024  */
0025 
0026 #ifndef _PMIX_CONTEXT_FNS_H_
0027 #define _PMIX_CONTEXT_FNS_H_
0028 
0029 #include "src/include/pmix_config.h"
0030 #include "pmix_common.h"
0031 
0032 BEGIN_C_DECLS
0033 
0034 PMIX_EXPORT pmix_status_t pmix_util_check_context_cwd(char **incwd,
0035                                                       bool want_chdir,
0036                                                       bool user_cwd);
0037 
0038 PMIX_EXPORT pmix_status_t pmix_util_check_context_app(char **incmd,
0039                                                       char *cwd,
0040                                                       char **env);
0041 
0042 END_C_DECLS
0043 #endif