in src/main/java/org/apache/sling/distribution/journal/RunnableUtil.java [29:34]
public static Thread startBackgroundThread(Runnable runnable, String threadName) {
Thread thread = new Thread(runnable, threadName);
thread.setDaemon(true);
thread.start();
return thread;
}