I'm using SGI/IRIX6.5, and have compiled blt2.4v with Tcl/Tk 8.3.1+. bltwish crashed when it tried to call the function Blt_Malloc(). What should I do?
Frodo
Logged In: YES user_id=137748
I don't have a IRIX box to check this on.
Blt_Malloc and Blt_Free and macros.
#define Blt_Malloc(size) (*Blt_MallocProcPtr)(size) #define Blt_Free (*Blt_FreeProcPtr)
that indirectly (via pointers) call malloc and free.
Check that values or Blt_MallocProcPtr and Blt_FreeProcPtr. Do they actually point to valid routines?
--gah
Log in to post a comment.
Logged In: YES
user_id=137748
I don't have a IRIX box to check this on.
Blt_Malloc and Blt_Free and macros.
#define Blt_Malloc(size) (*Blt_MallocProcPtr)(size)
#define Blt_Free (*Blt_FreeProcPtr)
that indirectly (via pointers) call malloc and free.
Check that values or Blt_MallocProcPtr and Blt_FreeProcPtr.
Do they actually point to valid routines?
--gah