Tongping Liu
Tongping Liu
Finally I make it work. There are two things that I have changed: (1) Pom.xml My current repositories are change to the following: github-releases http://oss.sonatype.org/content/repositories/github-releases/ clojars.org http://clojars.org/repo twitter4j http://twitter4j.org/maven2/org (2)...
Hi Pere, In the beginning, I can't compile successfully since we can't download some files. I actually only change one line in pom.xml. From http://twitter4j.org/maven2 to http://twitter4j.org/maven2/org Somehow, it works...
Great. Thank you very much!
For ferret, it seems that we can't rollback the image_init() call in the main function. I putted the memory error and exit before this function, then we can rollback everything...
Here is the stack for the memory fault error: 7fd9090f3780 [DOUBLETAKE-WRN]: ./xmemory.h:567 : 0: Segmentation fault error 1 at addr 0x70! ``` callstack frame 1: 0x5d403d ``` ??:? callstack frame...
According to the mapping information, there is a segmentation fault in the InitializeMagickResources() function of libMagic.a. I think that the problem comes from the recovery on the "globals" of this...
This problem are traced back the fprintf inside the program. Actually, fprintf sometime is going to allocate more memory. StopGap tries to reproduce all memory usage that this additional (unexpected)...
For the kmeans, it seems that the problem comes from reaping the threads. Since there are only 128 semaphores that can be created simultaneously, we should at most support 128...
We may change the policy of reaping threads. We should not wait until we don't have enough entries to hold a new thread. We could try to reap threads when...
What you describe is the actual mechanism that we are using now. Currently, we wait until the exhaustion of thread entries to reap those threads. However, this creates a problem...