CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2002
    Posts
    788

    Thread creates thread

    Is it possible to create a worker thread within a worker thread? If so, any issues of doing this ?

  2. #2
    Join Date
    Jun 2004
    Location
    India
    Posts
    432

    Re: Thread creates thread

    No issues. Infact you always create a thread from within a thread; there is no other way/place to create a thread.

    Is there a specific issue that you are expecting? Of course you will take care of all the thread related issues such as thread communications, synchronizations etc.
    Say no to supplying ready made code for homework/work assignments!!

    Please rate this post!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured