*/
/* make a daemon service with the default timer */
public DaemonService createNewDaemon(String name)
{
BasicDaemon daemon = new BasicDaemon(contextService);
final Thread daemonThread = Monitor.getMonitor().getDaemonThread(daemon, name, false);
// DERBY-3745. setContextClassLoader for thread to null to avoid
// leaking class loaders.
try {