~ubuntu-branches/ubuntu/trusty/pvm/trusty-proposed

« back to all changes in this revision

Viewing changes to src/pvmdmp.h

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-08-09 00:00:40 UTC
  • mfrom: (2.1.5 dapper)
  • Revision ID: james.westby@ubuntu.com-20060809000040-16kh33tmxx2em716
Tags: 3.4.5-7
Build with SHELL=/bin/bash in debian/rules; fixes FTBFS when /bin/sh
isn't bash. (Closes: #379543)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
/* $Id: pvmdmp.h,v 1.5 1999/07/08 19:00:23 kohl Exp $ */
 
2
/* $Id: pvmdmp.h,v 1.6 2000/02/17 23:12:19 pvmsrc Exp $ */
3
3
 
4
4
/*
5
5
 *         PVM version 3.4:  Parallel Virtual Machine System
33
33
 *      pvmdmp.h
34
34
 *
35
35
 * $Log: pvmdmp.h,v $
 
36
 * Revision 1.6  2000/02/17 23:12:19  pvmsrc
 
37
 * *** Changes for new BEOLIN port ***
 
38
 *      - MPP-like, similar to SP2, etc.
 
39
 *      - submitted by Paul Springer <pls@smokeymt.jpl.nasa.gov>.
 
40
 *      - format-checked & cleaned up by Jeembo...  :-)
 
41
 * (Spanker=kohl)
 
42
 *
36
43
 * Revision 1.5  1999/07/08 19:00:23  kohl
37
44
 * Fixed "Log" keyword placement.
38
45
 *      - indent with " * " for new CVS.
72
79
 
73
80
void mpp_init __ProtoGlarp__((int *argc, char **argv));
74
81
void mpp_free __ProtoGlarp__((struct task *tp));
75
 
#if defined(IMA_PGON)
76
 
int mpp_load __ProtoGlarp__(( struct waitc_spawn *wxp));
77
 
#else
78
 
int mpp_load __ProtoGlarp__((int flags, char *name, char **argv, int count,
79
 
    int *tids, int ptid, int nenv, char **envp));
80
 
#endif
 
82
int mpp_load __ProtoGlarp__((struct waitc_spawn *wxp));
81
83
int mpp_input __ProtoGlarp__((void));
82
84
int mpp_mcast __ProtoGlarp__((struct pkt *pp, int *tids, int ntask));
83
85
int mpp_output __ProtoGlarp__((struct task *tp, struct pkt *pp));
84
86
int mpp_probe __ProtoGlarp__((void));
85
87
void mpp_kill __ProtoGlarp__((struct task *tp, int signum));
86
88
void mpp_cleanup __ProtoGlarp__((void));
 
89
#ifdef IMA_BEOLIN
 
90
struct task *mpp_find __ProtoGlarp__((struct task *tp));
 
91
#endif
87
92
 
88
93
void wakesig __ProtoGlarp__((int sig));
 
94