* gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
authorStu Grossman <grossman@cygnus>
Tue, 20 Jun 1995 17:41:11 +0000 (17:41 +0000)
committerStu Grossman <grossman@cygnus>
Tue, 20 Jun 1995 17:41:11 +0000 (17:41 +0000)
gdb/ChangeLog
gdb/gdbtk.c

index 802fa7099e0032d4cf98444eb97154eb7edebaa6..83e8dffa022e43d3aac2d9fe11db527b6891b3bd 100644 (file)
@@ -1,5 +1,7 @@
 Tue Jun 20 10:19:40 1995  Stu Grossman  (grossman@cygnus.com)
 
+       * gdbtk.c:  Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
+
        * gdbtk.tcl (add_breakpoint_frame):  Add more fields.
        * (create_file_win create_asm_win build_framework):  Create null
        bindings for meta keys to keep window from dropping down to
index 9a8d0b3d8740e3464d8c4a37a69d3432943a5cec..87b9e33f135ea58fa4b8f7cc3dbd7156e56b4ee8 100644 (file)
@@ -68,6 +68,30 @@ static int x_fd;             /* X network socket */
 
 static int disassemble_from_exec = -1;
 
+/* Supply malloc calls for tcl/tk.  */
+
+char *
+Tcl_Malloc (size)
+     unsigned int size;
+{
+  return xmalloc (size);
+}
+
+char *
+Tcl_Realloc (ptr, size)
+     char *ptr;
+     unsigned int size;
+{
+  return xrealloc (ptr, size);
+}
+
+void
+Tcl_Free(ptr)
+     char *ptr;
+{
+  free (ptr);
+}
+
 static void
 null_routine(arg)
      int arg;