This file is indexed.

/usr/lib/mpich-mpd/include/mpeexten.h is in libmpich-mpd1.0-dev 1.2.7-10ubuntu1.

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
/* Prototypes for the mpe extension routines */
#ifndef MPE_EXTENSION_INC
#define MPE_EXTENSION_INC
/*
 * In order to provide better compile time error checking for the 
 * implementation, we use a union to store the actual copy/delete functions
 * for the different languages
 */
#include <stdio.h>
int MPE_Print_datatype_unpack_action ( FILE *, int, MPI_Datatype, int, int );
int MPE_Print_datatype_pack_action ( FILE *, int, MPI_Datatype, int, int );

void MPE_Comm_global_rank ( MPI_Comm, int, int * );

/* dbxerr.c */
void MPE_Errors_call_debugger ( char *, char *, char ** );
void MPE_Errors_call_dbx_in_xterm ( char *, char * );
void MPE_Errors_call_gdb_in_xterm ( char *, char * );
void MPE_Signals_call_debugger ( void );

#endif