Link to home
Start Free TrialLog in
Avatar of arijit_rebaca
arijit_rebaca

asked on

Thread Management

Hi,

I want to learn Thread Management in C++. Help me

thanks,
Avatar of rajeev_devin
rajeev_devin

Which platform ?
Avatar of arijit_rebaca

ASKER

in VC++
windows
ASKER CERTIFIED SOLUTION
Avatar of Rman01
Rman01

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Is it possible without using any APIs

thanks,

You have to use some form of basic API.  Try something like _beginthreadex.  That is about as low as you can get.

On MS, there is also something called fibers.  These are more like co-routines.  Strange to say the least.  I've never seen them being used commercially.  Great for impressing interviewers - most of them haven't heard of fibers either.