开发者

c fOpenThread() is this part of a header file, any info

开发者 https://www.devze.com 2022-12-21 04:10 出处:网络
Visual Studio 2008 C XP SP3 I am rea开发者_Go百科ding a book by Hoglund and he uses: HANDLE hThread = fOpenThread(

Visual Studio 2008 C XP SP3

I am rea开发者_Go百科ding a book by Hoglund and he uses:

 HANDLE hThread = fOpenThread(
               THREAD_ALL_ACCESS,
               FALSE,
               dbg_evt.dwThreadId);

Anybody know anything about fOpenThread as I can't find any details and I am getting the error message error C3861: 'fOpenThread': identifier not found.

Thanks, R.


Looking here: http://groups.google.com/group/microsoft.public.vc.language/browse_thread/thread/f592e476b0f70d01 and here: https://connect.microsoft.com/VisualStudio/feedback/details/449513/freopen-and-fopen-not-thread-safe it looks like fOpenThread() is a function call the author of your book has defined. Certainly, as far as I am aware there are two ways to create threads on windows:

  • _beginthreadex - crt
  • CreateThread - WinAPI.

I've always used the latter. I'd suggest the author is perhaps wrapping one of these functions?


Not part of the C standard library. Or, any library I have used. Check if he provides a definition somewhere earlier in that very book or not.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号