Blame src/mpi/attr/attr.h

Packit Service c5cf8c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */
Packit Service c5cf8c
/*
Packit Service c5cf8c
 *  (C) 2001 by Argonne National Laboratory.
Packit Service c5cf8c
 *      See COPYRIGHT in top-level directory.
Packit Service c5cf8c
 *
Packit Service c5cf8c
 * Portions of this code were written by Microsoft. Those portions are
Packit Service c5cf8c
 * Copyright (c) 2007 Microsoft Corporation. Microsoft grants
Packit Service c5cf8c
 * permission to use, reproduce, prepare derivative works, and to
Packit Service c5cf8c
 * redistribute to others. The code is licensed "as is." The User
Packit Service c5cf8c
 * bears the risk of using it. Microsoft gives no express warranties,
Packit Service c5cf8c
 * guarantees or conditions. To the extent permitted by law, Microsoft
Packit Service c5cf8c
 * excludes the implied warranties of merchantability, fitness for a
Packit Service c5cf8c
 * particular purpose and non-infringement.
Packit Service c5cf8c
 */
Packit Service c5cf8c
Packit Service c5cf8c
#ifndef ATTR_H_INCLUDED
Packit Service c5cf8c
#define ATTR_H_INCLUDED
Packit Service c5cf8c
Packit Service c5cf8c
/*
Packit Service c5cf8c
  Keyval and attribute storage
Packit Service c5cf8c
 */
Packit Service c5cf8c
extern MPIR_Object_alloc_t MPII_Keyval_mem;
Packit Service c5cf8c
extern MPIR_Object_alloc_t MPID_Attr_mem;
Packit Service c5cf8c
extern MPII_Keyval MPII_Keyval_direct[];
Packit Service c5cf8c
Packit Service c5cf8c
extern int MPIR_Attr_dup_list(int, MPIR_Attribute *, MPIR_Attribute **);
Packit Service c5cf8c
extern int MPIR_Attr_delete_list(int, MPIR_Attribute **);
Packit Service c5cf8c
extern MPIR_Attribute *MPID_Attr_alloc(void);
Packit Service c5cf8c
extern void MPID_Attr_free(MPIR_Attribute * attr_ptr);
Packit Service c5cf8c
extern int MPIR_Call_attr_delete(int, MPIR_Attribute *);
Packit Service c5cf8c
extern int MPIR_Call_attr_copy(int, MPIR_Attribute *, void **, int *);
Packit Service c5cf8c
Packit Service c5cf8c
#endif /* ATTR_H_INCLUDED */