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.

How to Implement Thread in Turbo C++?

share|improve this question

2 Answers

On Windows you call the CreateThread function as described here and here.

share|improve this answer

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.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.