* prims.cc (_Jv_ThisExecutable): Use _Jv_Malloc.
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 28 Apr 2001 00:04:55 +0000 (00:04 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 28 Apr 2001 00:04:55 +0000 (00:04 +0000)
* posix-threads.cc (_Jv_ThreadInitData): Use _Jv_Malloc.
(_Jv_ThreadDestroyData): Use _Jv_Free.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41650 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/posix-threads.cc
libjava/prims.cc

index 74523a6..8c1affd 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-27  Zack Weinberg  <zackw@stanford.edu>
+
+       * prims.cc (_Jv_ThisExecutable): Use _Jv_Malloc.
+       * posix-threads.cc (_Jv_ThreadInitData): Use _Jv_Malloc.
+       (_Jv_ThreadDestroyData): Use _Jv_Free.
+
 2001-04-27  Tom Tromey  <tromey@redhat.com>
 
        * jni.cc (_Jv_JNI_GetPrimitiveArrayRegion): Fixed bounds
index ce70257..6cbd297 100644 (file)
@@ -300,7 +300,7 @@ _Jv_InitThreads (void)
 _Jv_Thread_t *
 _Jv_ThreadInitData (java::lang::Thread *obj)
 {
-  _Jv_Thread_t *data = new _Jv_Thread_t;
+  _Jv_Thread_t *data = (_Jv_Thread_t *) _Jv_Malloc (sizeof (_Jv_Thread_t));
   data->flags = 0;
   data->thread_obj = obj;
 
@@ -315,7 +315,7 @@ _Jv_ThreadDestroyData (_Jv_Thread_t *data)
 {
   pthread_mutex_destroy (&data->wait_mutex);
   pthread_cond_destroy (&data->wait_cond);
-  delete data;
+  _Jv_Free ((void *)data);
 }
 
 void
index 9455b75..0fa42a4 100644 (file)
@@ -609,7 +609,7 @@ _Jv_ThisExecutable (const char *name)
 {
   if (name)
     {
-      _Jv_execName = new char[strlen (name) + 1];
+      _Jv_execName = (char *) _Jv_Malloc (strlen (name) + 1);
       strcpy (_Jv_execName, name);
     }
 }