/usr/include/lam/mpi_apps.h is in lam4-dev 7.1.4-3.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | /*
* Copyright (c) 2001-2003 The Trustees of Indiana University.
* All rights reserved.
* Copyright (c) 1998-2001 University of Notre Dame.
* All rights reserved.
* Copyright (c) 1994-1998 The Ohio State University.
* All rights reserved.
*
* This file is part of the LAM/MPI software package. For license
* information, see the LICENSE file in the top level directory of the
* LAM/MPI source distribution.
*
* $HEADER$
*
* $Id: mpi_apps.h,v 1.3 2003/04/08 18:54:20 ssankara Exp $
*
* Function: - MPI tracing constants and templates
*/
#ifndef LAM_MPI_APPS_H
#define LAM_MPI_APPS_H
#include <lam_config.h>
#include <lam-ssi.h>
/*
* structs sent back to mpirun (or spawning app) indicating where a
* new process is located and some other startup negotiation stuff
*/
struct mpi_app_proc_info {
int mapi_mcw_rank;
int mapi_pid;
int mapi_ps_index;
};
struct mpi_app_ssi_info {
char masi_name[LAM_MPI_SSI_BASE_MAX_MODULE_NAME_LEN];
int masi_major_ver;
int masi_minor_ver;
int masi_release_ver;
};
struct mpi_app_extra_info {
struct mpi_app_ssi_info maei_rpi;
struct mpi_app_ssi_info maei_crmpi;
};
#endif /* LAM_MPI_APPS_H */
|