File: Pvmfpsend.c

package info (click to toggle)
pvm 3.4beta7-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 5,256 kB
  • ctags: 5,938
  • sloc: ansic: 66,147; makefile: 1,446; fortran: 631; sh: 424; csh: 70; asm: 37
file content (20 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

/* $Id: Pvmfpsend.c,v 1.1 1997/06/27 16:29:59 pvmsrc Exp $ */

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

#include "pvm_consts.h"

void /*__stdcall*/ __fortran
PVMFPSEND (tid, msgtag, buf,buf_len, len, dt, info)
   int *tid, *msgtag, *len, *dt, *info;
   char *buf;int buf_len;
{
   *info = pvm_psend(*tid, *msgtag, buf, *len, *dt);
}