Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:37

0001 /*
0002  * Copyright (c) 2004-2009 The Trustees of Indiana University.
0003  *                         All rights reserved.
0004  * Copyright (c) 2010-2012 Cisco Systems, Inc.  All rights reserved.
0005  * Copyright (c) 2010      Oracle and/or its affiliates.  All rights reserved.
0006  * Copyright (c) 2021      The University of Tennessee and the University
0007  *                         of Tennessee research Foundation.  All rights
0008  *                         reserved.
0009  * $COPYRIGHT$
0010  *
0011  * Additional copyrights may follow
0012  *
0013  * $HEADER$
0014  *
0015  */
0016 
0017 #define OMPI_AFFINITY_STRING_MAX 1024
0018 
0019 typedef enum ompi_affinity_fmt {
0020     OMPI_AFFINITY_RSRC_STRING_FMT,
0021     OMPI_AFFINITY_LAYOUT_FMT
0022 } ompi_affinity_fmt_t;
0023 
0024 OMPI_DECLSPEC int OMPI_Affinity_str(ompi_affinity_fmt_t fmt_type,
0025                     char ompi_bound[OMPI_AFFINITY_STRING_MAX],
0026                                     char current_binding[OMPI_AFFINITY_STRING_MAX],
0027                                     char exists[OMPI_AFFINITY_STRING_MAX]);