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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
static char rcsid[] =
"$Id: pkt.c,v 1.4 1999/07/08 19:00:05 kohl Exp $";
/*
* PVM version 3.4: Parallel Virtual Machine System
* University of Tennessee, Knoxville TN.
* Oak Ridge National Laboratory, Oak Ridge TN.
* Emory University, Atlanta GA.
* Authors: J. J. Dongarra, G. E. Fagg, M. Fischer
* G. A. Geist, J. A. Kohl, R. J. Manchek, P. Mucci,
* P. M. Papadopoulos, S. L. Scott, and V. S. Sunderam
* (C) 1997 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby granted
* provided that the above copyright notice appear in all copies and
* that both the copyright notice and this permission notice appear in
* supporting documentation.
*
* Neither the Institutions (Emory University, Oak Ridge National
* Laboratory, and University of Tennessee) nor the Authors make any
* representations about the suitability of this software for any
* purpose. This software is provided ``as is'' without express or
* implied warranty.
*
* PVM version 3 was funded in part by the U.S. Department of Energy,
* the National Science Foundation and the State of Tennessee.
*/
/*
* pkt.c
*
* Packet buffers.
*
* $Log: pkt.c,v $
* Revision 1.4 1999/07/08 19:00:05 kohl
* Fixed "Log" keyword placement.
* - indent with " * " for new CVS.
*
* Revision 1.3 1997/06/27 17:32:32 pvmsrc
* Updated for WIN32 header files & Authors.
*
* Revision 1.2 1997/01/28 19:26:56 pvmsrc
* New Copyright Notice & Authors.
*
* Revision 1.1 1996/09/23 23:44:23 pvmsrc
* Initial revision
*
* Revision 1.3 1995/07/24 18:27:24 manchek
* zero pk_cpos on create
*
* Revision 1.2 1994/06/03 20:38:20 manchek
* version 3.3.0
*
* Revision 1.1 1993/08/30 23:26:49 manchek
* Initial revision
*
*/
#include <stdio.h>
#ifndef WIN32
#include <sys/time.h>
#else
#include "pvmwin.h"
#endif
#include <pvm3.h>
#include "pvmalloc.h"
#include "pkt.h"
#include "pvmdabuf.h"
#include "listmac.h"
#include "bfunc.h"
extern void pvmbailout();
/***************
** Private **
** **
***************/
/*********************
** Pkt Functions **
** **
*********************/
/* pk_new()
*
* Create a new pkt, not in a list.
* If len is nonzero, len bytes are allocated as data space.
* Else, the pkt has no data (is a master or will get data later).
*
* The following fields are uninitialized:
* pk_src, pk_dst, pk_flag, pk_tag, pk_ctx, pk_enc, pk_wid, pk_crc, pk_hostd,
* pk_seq, pk_ack, pk_rtv, pk_rta, pk_rto, pk_at, pk_nrt
*/
struct pkt *
pk_new(len)
int len; /* (max) buffer size or 0 */
{
struct pkt *pp;
if (!(pp = TALLOC(1, struct pkt, "pkt")))
goto oops;
/*
BZERO((char*)pp, sizeof(struct pkt));
*/
if (len) { /* slave pkt */
if (!(pp->pk_dat = pp->pk_buf = da_new(len))) {
PVM_FREE(pp);
goto oops;
}
pp->pk_max = len;
pp->pk_len = 0;
pp->pk_link = pp->pk_rlink = 0;
} else { /* master */
pp->pk_dat = pp->pk_buf = 0;
pp->pk_link = pp->pk_rlink = pp;
}
pp->pk_cpos = 0;
pp->pk_tlink = pp->pk_trlink = 0;
return pp;
oops:
pvmlogerror("pk_new() can't get memory\n");
pvmbailout(0);
return (struct pkt*)0;
}
void
pk_free(pp)
struct pkt *pp;
{
struct pkt *pp2, *pp3;
if (pp->pk_buf) { /* slave pkt */
if (pp->pk_tlink) {
LISTDELETE(pp, pk_tlink, pk_trlink);
}
da_unref(pp->pk_buf);
} else { /* master pkt */
/* free all pkts in chain */
for (pp2 = pp->pk_link; pp2 != pp; pp2 = pp3) {
pp3 = pp2->pk_link;
LISTDELETE(pp2, pk_link, pk_rlink);
pk_free(pp2);
}
}
PVM_FREE(pp);
}
|