There were posts about reenterable version of GLPK in this list: http://lists.gnu.org/archive/html/help-glpk/2012-12/msg00044.html
I concluded from this post that reenterability can be achieved by changing a line glpent02.c:31 from static void *tls = NULL; to static TLS void *tls = NULL; . TLS is configured either empty in single thread library or in platform-dependednt way like "__thread" in reenterable library. Patch could look like here: http://code.google.com/p/thermocompensation/source/browse/#svn%2Ftrunk%2Fglpk_patch Does I missed something ? Will GLPK-4.48 be reenterable ? _______________________________________________ Help-glpk mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-glpk
