diff options
author | Sven Gothel <sgothel@jausoft.com> | 2012-03-18 16:33:07 +0100 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2012-03-18 16:33:07 +0100 |
commit | d570fa74d4fd22459aa1579749a7705949a2a748 (patch) | |
tree | 6e535ce86c531c36af3806789f778489e7c7a3dd /src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java | |
parent | 4c5d6c1b5570fe1ba2cfbbed46259f0a21534ff5 (diff) |
Reduce Thread.dumpStack() in debug mode where no negative behavior appears or a stack trace may be helpful.
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java index 51566d48d..f4069d430 100644 --- a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java +++ b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLDrawableFactory.java @@ -165,7 +165,7 @@ public class WindowsWGLDrawableFactory extends GLDrawableFactoryImpl { if ( GDI.GetProcessAffinityMask(pid, procMask, sysMask) ) { if(DEBUG) { System.err.println("WindowsWGLDrawableFactory.enterThreadCriticalZone() - 0x" + Long.toHexString(pid) + " - " + Thread.currentThread().getName()); - Thread.dumpStack(); + // Thread.dumpStack(); } processAffinityChanges = pid; GDI.SetProcessAffinityMask(pid, 1); |