<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body>
<div class="BodyFragment">
<font size="2"><div class="PlainText"><br>
On Jul 20, 2012, at 10:14 AM, Pendergrass, James A. wrote:<br>
<br>
> Hi Erik,<br>
> Thanks for the response.<br>
> <br>
> On Jul 19, 2012, at 6:37 PM, Erik Huelsmann wrote:<br>
> <br>
>> Hi James,<br>
>> <br>
>> On Thu, Jul 19, 2012 at 10:16 PM, Pendergrass, James A. <James.Pendergrass@jhuapl.edu> wrote:<br>
>> Hello all,<br>
>> I'm having some trouble with space leakage that looks to be because the static map in LispThread isn't letting go of completed JavaThreads.  Basically what I'm doing on the Java side looks like:<br>
>> <br>
>>> class Foo {<br>
>>>      public static int main(){<br>
>>>              manager = new Manager();<br>
>>>              fun     = getLispFunction("processResults");<br>
>>> <br>
>>>              new Thread() {<br>
>>>                      public void run() {<br>
>>>                              LispObject res = generateSomeLisp();<br>
>>>                              fun.execute(manager, res);<br>
>>>                      }.run();<br>
>>>              manager = null;<br>
>>>              while(1);<br>
>>>      }<br>
>>> }<br>
>> <br>
>> The lisp side looks like:<br>
>> <br>
>>> (defun processResults (manager res)<br>
>>>      (let ((*manager* manager))<br>
>>>         (declare (special *manager*))<br>
>>>         (eval res)))<br>
>> <br>
>> But the manager never gets destroyed.  I used the eclipse Java Memory Analysis tool to track this down to the created JavaThread being referenced as a key in the static map variable in LispThread.<br>
>> <br>
>> Any suggestions on how to get around this?  The whole code base is pretty memory intensive so garbage collecting that manager is really a must (and cleaning up the thread is probably a good plan too).<br>
>> <br>
>> <br>
>> One way around this would be to use the LispThread class from the org.armedbear.lisp package: it removes the thread it creates from the map when the thread.run() function terminates.<br>
> <br>
> I'm looking in to this, but there seem to be two problems with it:<br>
> 1) the constructors for LispThread aren't externally visible. <br>
> 2) even if it was visible the constructor LispThread(Function fun,LispObject name) requires I create a 0-arity closure with the java manager object bound,  which always seems to involve LispThread.currentThread() which sticks the current JavaThread in the hash map.<br>
> <br>
>> The other option would be for someone to rewrite the map to use a weak hash table algorithm.<br>
>> <br>
>> The latter is probably the best long term solution anyway....<br>
> <br>
> This does seem like the best long term solution.  There seem to be a few WeakConcurrentHashMap implementations around, but I don't see anything in the core jdk (I could easily be missing something; I'm not really a java guy).  The choices seem to be Weak or Concurrent but not both.<br>
<br>
The attached patch is my attempt at modifying LispThread to only hang on to Java Threads using weak references.  I haven't tested this extensively, but it solves my problem with out blowing up.  <br>
-Aaron<br>
<br>
</div></font>
</div>
<div class="BodyFragment">
<font size="2"><div class="PlainText"><br>
> <br>
> -aaron<br>
> <br>
>> <br>
>> Bye,<br>
>> <br>
>> <br>
>> Erik.<br>
>> <br>
> <br>
> <br>
> _______________________________________________<br>
> armedbear-devel mailing list<br>
> armedbear-devel@common-lisp.net<br>
> <a href="http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel">http://lists.common-lisp.net/cgi-bin/mailman/listinfo/armedbear-devel</a><br>
<br>
</div></font>
</div>
</body></html>