public synchronized void pvm_mcast(jpvmBuffer buf, jpvmTaskId tids[],
int ntids, int tag) throws jpvmException {
int exceptions = 0;
jpvmMessage message = new jpvmMessage(buf, null, myTid, tag);
for(int i=0;i<ntids; i++) {
jpvmTaskId tid = tids[i];
message.destTid = tid;
jpvmDebug.note("pvm_mcast, sending message to "+
tid.toString());
try {
jpvmSendConnection conn = getConnection(tid);
message.send(conn);
}
catch (jpvmException jpe) {