File: Pvmfpstat.c

package info (click to toggle)
pvm 3.4.6-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 8,284 kB
  • sloc: ansic: 72,074; makefile: 1,198; fortran: 631; sh: 285; csh: 74; asm: 37
file content (23 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/* $Id: Pvmfpstat.c,v 1.2 1998/09/21 20:27:14 pvmsrc Exp $ */

#ifdef WIN32
#include "..\..\include\pvm3.h"
#include "..\..\src\pvmwin.h"
#else 
#include "pvm3.h"
#endif

#include "pvm_consts.h"

void 
#ifdef IMA_WIN32_WATCOM
pvmfpstat (tid, pstat)
#else
__fortran PVMFPSTAT (tid, pstat)
#endif
int *tid, *pstat;
{
   *pstat = pvm_pstat(*tid);
}