swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Any one using Compaq(DEC) Tru64 UNIX?


From: Marcus G. Daniels
Subject: Re: Any one using Compaq(DEC) Tru64 UNIX?
Date: 23 Jan 2001 13:52:05 -0800
User-agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.4

>>>>> "WN" == W Northcott <address@hidden> writes:

WN> process_ivar(), file: HDF5Object.m, line: 800 differing source and
WN> target types 11/8

A fix for that one is below.

WN> That leaves one error still stopping us working.  (The ArtStkMkt code
WN> still crashes at exactly the same place) I will try hacking 3.  My
WN> suspicion is that the problems 1 and 2 are also caused within
WN> internal.m.

I don't get a crash using the ASM-2.0 code from ftp.swarm.org, but
I do get a crash when I try to run Paul's newer code on sourceforge.

The symptom is a failed allocation from a silly value of numfcasts.
If you're nice to Paul, maybe he'll help investigate since he has
direct access to the machine and knows the ASM code better than I do.

It's hard for me to debug since I'm trying to do it over a slow ISDN
connection to a machine thousands of miles away, and the crash doesn't
happen until a bunch of X windows are running.

Index: HDF5Object.m
===================================================================
RCS file: /cvs/hive/Swarm/swarm/src/defobj/HDF5Object.m,v
retrieving revision 1.91
retrieving revision 1.93
diff -c -r1.91 -r1.93
*** HDF5Object.m        2000/09/22 17:09:13     1.91
--- HDF5Object.m        2001/01/23 20:40:23     1.93
***************
*** 97,102 ****
--- 97,110 ----
        else if (ivarType == fcall_type_boolean && type == fcall_type_uchar
                 && sizeof (BOOL) == sizeof (unsigned char))
          return YES;
+       else if (ivarType == fcall_type_slonglong
+                && type == fcall_type_slong
+                && sizeof (long long) == sizeof (long))
+         return YES;
+       else if (ivarType == fcall_type_ulonglong
+                && type == fcall_type_ulong
+                && sizeof (unsigned long long) == sizeof (unsigned long))
+         return YES;
        else
          return NO;
      }


                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]