R6016 - not enough space for thread data

后端 未结 1 1768
我寻月下人不归
我寻月下人不归 2021-01-18 02:26

How do I go about debugging \"R6016 - not enough space for thread data\" in a C++ application. I\'ve read http://support.microsoft.com/kb/126709 but would like some other i

1条回答
  •  清歌不尽
    2021-01-18 02:53

    This error message is generated by the C Run Time Library, CRT. Which version of the CRT are you using? I would start by determining what my call stack was when this error is generated. You can grep the CRT source code to find every place the error would be returned. I would also look at any in place in my code that calls TLSAlloc to see what I am putting into thread local storage and why.

    0 讨论(0)
提交回复
热议问题