9c4c68ccc9
The latest PVM release 3.4.5 is mainly bug fixes and additional support for varying Linux distributions and some better 64-bit Linux/AMD support (like it doesn't seg fauly any more :-). Added strerror() support instead of old crusty global vars. New architectures were added for AIX5*. Fixed hilarious bug in pvmtmpnam(), caused crash after 10,000 spawns... :-D While there's a variety of little tweaks, there are no significant changes or additions to the basic functionality.
16 lines
703 B
Text
16 lines
703 B
Text
$NetBSD: patch-ay,v 1.5 2004/11/12 10:45:45 adam Exp $
|
|
|
|
--- console/cmds.c.orig 2004-01-14 18:46:20.000000000 +0000
|
|
+++ console/cmds.c
|
|
@@ -1419,9 +1419,9 @@ conf_cmd(ac, av)
|
|
if (!pvm_config(&nhosts, &narchs, &hostlist)) {
|
|
printf("%d host%s, %d data format%s\n",
|
|
nhosts, (nhosts > 1 ? "s" : ""), narchs, (narchs > 1 ? "s" : ""));
|
|
- fputs(" HOST DTID ARCH SPEED DSIG\n", stdout);
|
|
+ fputs(" HOST DTID ARCH SPEED DSIG\n", stdout);
|
|
for (i = 0; i < nhosts; i++)
|
|
- printf("%24s %8x %8s%8d 0x%08x\n",
|
|
+ printf("%24s %8x %12s%8d 0x%08x\n",
|
|
hostlist[i].hi_name,
|
|
hostlist[i].hi_tid,
|
|
hostlist[i].hi_arch,
|