How to Implement Thread in Turbo C++?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
On Windows you call the CreateThread function as described here and here. |
|||
|
|
|
Depends on which version of Turbo C++. DOS has no threads, and versions up Turbo C++ 3.0 were strictly for DOS. Turbo C++ versions 3.0 and up have support for Windows development, but only the Win16 API, so the program won't work on 64-bit versions of Windows. If you really want to create a "thread" in DOS, you can use a TSR routine in DOS, though those work pretty bad under Windows. (Higher versions of Borland C++ support modern versions of Windows.) |
||||
|
|