prims.cc (_Jv_ThisExecutable): Use _Jv_Malloc.
authorZack Weinberg <zackw@stanford.edu>
Sat, 28 Apr 2001 00:04:55 +0000 (00:04 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Sat, 28 Apr 2001 00:04:55 +0000 (00:04 +0000)
* prims.cc (_Jv_ThisExecutable): Use _Jv_Malloc.
* posix-threads.cc (_Jv_ThreadInitData): Use _Jv_Malloc.
(_Jv_ThreadDestroyData): Use _Jv_Free.

From-SVN: r41650

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

index 74523a6722c6293c31f0076928e7045a04653080..8c1affd26bff54de65491d025b4e03ea793b01e6 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 ce70257673ddf5edb7be9eb6178d6596eae56698..6cbd29798f93c444ee58fb5113e86c40ac0819ce 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 9455b7551a23c696af8d5d264555b16815295fba..0fa42a4d6a8450993f541e0c9ae682999bcd1579 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);
     }
 }