* 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 802fa70..83e8dff 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 9a8d0b3..87b9e33 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;