Everybody's favorite new game show, Name That Thread

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@538 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Charlie Groves
2008-06-11 00:46:48 +00:00
parent 67cc68c1b6
commit 49777fab3f
2 changed files with 10 additions and 0 deletions
@@ -613,6 +613,11 @@ public abstract class FrameManager
/** Used to effect periodic calls to {@link #tick}. */
protected class Ticker extends Thread
{
public Ticker ()
{
super("FrameManagerTicker");
}
public void run ()
{
log.info("Frame manager ticker running " +
@@ -34,6 +34,11 @@ import static com.threerings.miso.Log.log;
*/
public class SceneBlockResolver extends LoopingThread
{
public SceneBlockResolver ()
{
super("SceneBlockResolver");
}
/**
* Queues up a scene block for resolution.
*/