C Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesC Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old September 28th, 2012, 01:14 AM
Gajananh999 Gajananh999 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2012
Posts: 8 Gajananh999 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 16 m 43 sec
Reputation Power: 0
Smile WaitForMultipleObjects is not waiting all the thread to complete their task

Hello Everyone,

Hi opening multiple thread at run time and finally called function.
WaitForMultipleObjects(nooffiles,handle, TRUE, INFINITE);
but its not working for me
Code:
for(i=0;i<n;i++)
{
     handle[nooffiles] =  (HANDLE)_beginthreadex( NULL, 0, &createthreadtohandlefile, foldertemp, 0, NULL);
}

WaitForMultipleObjects(n,handle, TRUE, INFINITE);


Please can anyone suggest me. Why this WaitForMultipleObjects is not working properly?

Reply With Quote
  #2  
Old September 28th, 2012, 02:00 AM
Scorpions4ever's Avatar
Scorpions4ever Scorpions4ever is offline
Banned ;)
Dev Shed God 9th Plane (9000 - 9499 posts)
 
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
Posts: 9,385 Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 46th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 4 Weeks 1 Day 21 h 30 m 25 sec
Reputation Power: 4080
This code:
Code:
for(i=0;i<n;i++)
{
     handle[nooffiles] =  (HANDLE)_beginthreadex( NULL, 0, &createthreadtohandlefile, foldertemp, 0, NULL);
}

should be:
Code:
for(i=0;i<n;i++)
{
     handle[i] =  (HANDLE)_beginthreadex( NULL, 0, &createthreadtohandlefile, foldertemp, 0, NULL);
}

otherwise you have a lot of invalid handles in your handle array when you hand it off to WaitForMultipleObjects()
__________________
Up the Irons
What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home.
"Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest
Down with Sharon Osbourne

Reply With Quote
  #3  
Old September 28th, 2012, 02:21 AM
Gajananh999 Gajananh999 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2012
Posts: 8 Gajananh999 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 h 16 m 43 sec
Reputation Power: 0
i did like this only
Code:
for(i=0;i<n;i++)
{
     handle[i] =  (HANDLE)_beginthreadex( NULL, 0, &createthreadtohandlefile, foldertemp, 0, NULL);
}

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesC Programming > WaitForMultipleObjects is not waiting all the thread to complete their task

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap