/usr/include/lam/proc_schema.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 51 52 53 54 55 56 57 | /*
* Copyright (c) 2001-2002 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$
* Ohio Trollius
* Copyright 1995 The Ohio State University
* GDB
*
* $Log: proc_schema.h,v $
* Revision 1.2 2002/10/09 20:57:25 brbarret
* * Update tree to match the latest, greatest, license for LAM/MPI. And this
* one is even done properly :)
*
* Revision 1.1 2000/02/12 00:14:19 jsquyres
* Moved share/boot/proc_schema.a to share/include/proc_schema.h 'cause
* multiple places include it.
*
* Revision 6.2 1999/05/23 19:28:25 kmeyer1
* added copyrights
*
* Revision 6.1 1996/11/24 00:44:59 nevin
* Ohio Release
*
* Revision 6.0 96/02/29 13:41:36 gdburns
* Ohio Release
*
* Function: - internal representation of a process schema
*/
#ifndef _PROC_SCHEMA
#define _PROC_SCHEMA
#include <portable.h>
#define PSC_MAXLINE 256
#define PSC_DELAY 1
/*
* process schema list entry
*/
struct psc {
char **psc_argv; /* argv */
int4 psc_argc; /* argc */
int4 psc_delay; /* delay (in seconds) after startup */
int4 psc_flags; /* info bits */
};
#endif
|