I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 3e55cff1 authored by zzz's avatar zzz
Browse files

Util: Catch and convert OOM in I2PThread.start() to a RuntimeException,

to give better message to users and prevent JVM shutdown
on what is unlikely to be a heap issue.
parent bd778a22
No related branches found
No related tags found
No related merge requests found
...@@ -76,6 +76,29 @@ public class I2PThread extends Thread { ...@@ -76,6 +76,29 @@ public class I2PThread extends Thread {
} }
****/ ****/
/**
* Overridden to provide useful info to users on OOM, and to prevent
* shutting down the whole JVM for what is most likely not a heap issue.
* If the calling thread is an I2PThread an OOM would shut down the JVM.
* Telling the user to increase the heap size may make the problem worse.
* We may be able to continue without this thread, particularly in app context.
*
* @since 0.9.20
*/
@Override
public void start() {
try {
super.start();
} catch (OutOfMemoryError oom) {
System.out.println("ERROR: Thread could not be started: " + getName());
if (!(SystemVersion.isWindows() || SystemVersion.isAndroid())) {
System.out.println("Check ulimit -u, /etc/security/limits.conf, or /proc/sys/kernel/threads-max");
}
oom.printStackTrace();
throw new RuntimeException("Thread could not be started", oom);
}
}
@Override @Override
public void run() { public void run() {
//_name = Thread.currentThread().getName(); //_name = Thread.currentThread().getName();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment