[Mesa-dev] [Bug 76252] Dynamic loading/unloading of opengl32.dll results in a deadlock
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Wed Mar 26 00:19:56 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=76252
--- Comment #1 from cgerlach42 at gmail.com ---
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.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20140326/a44c6b93/attachment.html>
More information about the mesa-dev
mailing list