~ubuntu-branches/ubuntu/feisty/pvm/feisty

« back to all changes in this revision

Viewing changes to src/lpvm.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: lpvm.h,v 1.12 1999/07/08 19:00:21 kohl Exp $ */
 
2
/* $Id: lpvm.h,v 1.14 2004/01/14 18:50:56 pvmsrc Exp $ */
3
3
 
4
4
/*
5
5
 *         PVM version 3.4:  Parallel Virtual Machine System
35
35
 *      Libpvm Globals Declarations.
36
36
 *
37
37
 * $Log: lpvm.h,v $
 
38
 * Revision 1.14  2004/01/14 18:50:56  pvmsrc
 
39
 * Added new AIX5* arches.
 
40
 * (Spanker=kohl)
 
41
 *
 
42
 * Revision 1.13  2000/02/16 22:00:59  pvmsrc
 
43
 * Added #ifndef NO_NETINET_TCP_H around <netinet/tcp.h> for
 
44
 *      archs that can't handle it...  :-)
 
45
 * (Spanker=kohl)
 
46
 *
38
47
 * Revision 1.12  1999/07/08 19:00:21  kohl
39
48
 * Fixed "Log" keyword placement.
40
49
 *      - indent with " * " for new CVS.
92
101
#include <sys/types.h>
93
102
#ifndef WIN32
94
103
#include <netinet/in.h>
 
104
#ifndef NO_NETINET_TCP_H
95
105
#include <netinet/tcp.h>
96
106
#endif
 
107
#endif
97
108
 
98
109
#ifdef IMA_MPP
99
110
#include "mppchunk.h"
133
144
 
134
145
 
135
146
#if defined(IMA_ALPHAMP) || defined(IMA_CSPP) || defined(IMA_HPPAMP) \
136
 
        || defined(IMA_RS6KMP) || defined(IMA_SGIMP) || defined(IMA_SGIMP6) \
137
 
        || defined(IMA_AIX4MP) || defined(IMA_SGIMP64) || defined(IMA_SUNMP)
 
147
        || defined(IMA_RS6KMP) || defined(IMA_SGIMP) \
 
148
        || defined(IMA_SGIMP6) || defined(IMA_AIX4MP) \
 
149
        || defined(IMA_AIX5MP) || defined(IMA_SGIMP64) \
 
150
        || defined(IMA_SUNMP)
138
151
extern   int pvmpolltype;                       /* memory polling style */
139
152
extern   int pvmpolltime;                       /* time value for poll wait */
140
153
#endif