Newsgroups: comp.parallel.pvm
From: bmanchek@ens-lyon.fr (Bob Manchek)
Subject: Re: xab3 and pvm3.3
Organization: Ecole Normale Superieure de Lyon
Date: 27 Oct 1994 12:07:03 GMT
Message-ID: <38o557$djg@cri.ens-lyon.fr>

In article 4dr@vkhdsu01.hda.hydro.com, bg54477@bginsu01.hydro.com (Fredrik Manne) writes:
> I have recently upgraded from pvm3.2 to 3.3 (and finally gotten things to
> run).  Now my problem is, I use xab3 for generating tracefiles but xab3.3.9
> still relies on pvm_serror and pvm_advise which pvm3.3 does not support.
> 
> Is there a newer version of xab3 which solves these problems?
> 
> Fredrik Manne

I don't know of one.  You could patch xab by sticking in replacements for
those functions:
---
int
pvm_serror(how)
    int how;
{
    return pvm_setopt(PvmAutoErr, how);
}

int
pvm_advise(what)
    int what;
{
    return pvm_setopt(PvmRoute, what);
}
---

b
---
/ Robert Manchek                University of Tennessee     /
/                               Computer Science Department /
/ (615)974-8295                 Ayres Hall #104             /
/ manchek@CS.UTK.EDU.           Knoxville TN  37996-1301    /
/     http://www.netlib.org/utk/people/BobManchek.html      /



