{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"jogl\" build number 1,275",
          "upstreamBuild" : 1275,
          "upstreamProject" : "jogl",
          "upstreamUrl" : "job/jogl/"
        }
      ]
    },
    {
      
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 1275,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
            "branch" : [
              {
                "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
            "branch" : [
              {
                "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
        "branch" : [
          {
            "SHA1" : "321cac1e125f806eb437e528b343d07379b31163",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/jogl.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.junit.TestResultAction",
      "failCount" : 0,
      "skipCount" : 0,
      "totalCount" : 942,
      "urlName" : "testReport"
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "#1275",
  "duration" : 5421165,
  "estimatedDuration" : 3745003,
  "executor" : None,
  "fullDisplayName" : "jogl » windows-x86_64 #1275",
  "id" : "2014-06-13_05-15-14",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 1275,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1402629314000,
  "url" : "https://jogamp.org/chuck/job/jogl/label=windows-x86_64/1275/",
  "builtOn" : "win64-nvgtx460-win7-jogamp-x64-sgothel-011",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/newt/classes/jogamp/newt/swt/SWTEDTUtil.java",
          "src/newt/classes/jogamp/newt/DefaultEDTUtil.java",
          "src/test/com/jogamp/opengl/test/junit/newt/TestDisplayLifecycle01NEWT.java",
          "src/newt/classes/com/jogamp/newt/util/EDTUtil.java",
          "make/scripts/tests.sh",
          "src/newt/classes/jogamp/newt/driver/awt/AWTEDTUtil.java"
        ],
        "commitId" : "1c5b41f01c9f31f7bd787c6b194f7939904e239b",
        "timestamp" : 1402592901000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Fix NEWT EDTUtil Deadlock on EDTUtil.start()\u000a\u000aDisplayImpl.runOnEDTIfAvail(..) issues EDTUtil.start()\u000awhile holding it's object-lock - if the EDT is not running,\u000athen invokes the given task.\u000a\u000aEDTUtil.start() impl. holds it's own edt-lock\u000awhile starting, then releases it's edt-lock while issuing a null-task.\u000a\u000aIf another thread injects a blocking task right in-between\u000awhich also acquires the display's object-lock it deadlocks.\u000a\u000aSimply remove issuing the null-task, so EDTUtil.start()\u000acan return immediatly (releasing edt-lock)\u000aand allowing DisplayImpl.runOnEDTIfAvail(..)\u000aalso to release it's object-lock.\u000a\u000aThe other threads task then can be executed,\u000awhere the 'starting task' would come second - which is OK,\u000aeven though a rare occasion.\u000a\u000aAbove situation was triggered via AWT/NEWT reparenting w/ forced recreation\u000avia TestParenting01dAWT.\u000a\u000a+++\u000a\u000aThe null-task at EDTUtil.start() was remaining code to ensure\u000athat the EDT completed starting, which is redundant.\u000a",
        "date" : "2014-06-12T19:08:21+0200",
        "id" : "1c5b41f01c9f31f7bd787c6b194f7939904e239b",
        "msg" : "Fix NEWT EDTUtil Deadlock on EDTUtil.start()",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/newt/TestDisplayLifecycle01NEWT.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/swt/SWTEDTUtil.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/driver/awt/AWTEDTUtil.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/jogamp/newt/DefaultEDTUtil.java"
          },
          {
            "editType" : "edit",
            "file" : "src/newt/classes/com/jogamp/newt/util/EDTUtil.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/jogl/classes/javax/media/opengl/awt/GLJPanel.java",
          "make/scripts/tests.sh",
          "make/scripts/tests-win.bat",
          "src/test/com/jogamp/opengl/test/junit/jogl/awt/TestGLJPanelTextureStateAWT.java"
        ],
        "commitId" : "321cac1e125f806eb437e528b343d07379b31163",
        "timestamp" : 1402618937000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Fix Bug 826 Regression caused by commit 41190c3830157abdf9649cbf7767e57108f55075 (Bug 975)\u000a\u000aCommit 41190c3830157abdf9649cbf7767e57108f55075,\u000afix for 'Bug 975 GLJPanel's OffscreenDrawable double swap',\u000acaused a regression of commit c427ed22244df44b71a0f1f000b0f93e56c283c2,\u000afix for 'Bug 826: GLJPanel: Fully restore TextureState and Viewport'.\u000a\u000aCommit 41190c3830157abdf9649cbf7767e57108f55075 issues offscreenDrawable.swapBuffers()\u000aand hence modifying the texture unit settings before saving the TextureState,\u000athe whole purpose of commit c427ed22244df44b71a0f1f000b0f93e56c283c2.\u000a",
        "date" : "2014-06-13T02:22:17+0200",
        "id" : "321cac1e125f806eb437e528b343d07379b31163",
        "msg" : "Fix Bug 826 Regression caused by commit",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/tests.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/jogl/classes/javax/media/opengl/awt/GLJPanel.java"
          },
          {
            "editType" : "edit",
            "file" : "src/test/com/jogamp/opengl/test/junit/jogl/awt/TestGLJPanelTextureStateAWT.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/tests-win.bat"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}