<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Dynamic loading/unloading of opengl32.dll results in a deadlock"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=76252#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Dynamic loading/unloading of opengl32.dll results in a deadlock"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=76252">bug 76252</a>
              from <span class="vcard"><a class="email" href="mailto:cgerlach42@gmail.com" title="cgerlach42@gmail.com">cgerlach42@gmail.com</a>
</span></b>
        <pre>Some short test program that provokes the deadlock:

#include <QtCore/QLibrary.h>

int main (int, char **)
{
  QLibrary library ("some path to llvmpipe opengl32.dll");

  library.load ();
  printf ("loaded: %d\n", library.isLoaded ());

  library.unload ();
  printf ("loaded: %d\n", library.isLoaded ());

  return 0;
};

The unload call never returns.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>