Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. SetEvent and WaitForSiongleObject

SetEvent and WaitForSiongleObject

Scheduled Pinned Locked Moved C / C++ / MFC
comdebugginghelpquestion
22 Posts 4 Posters 3 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Albert Holguin

    Munchies_Matt wrote:

    How much more simply can it be explained to you? You have seen the code, and moving the second write file into the same thread as the first write file results in no delay at all demonstrating that the fault lies in the thread scheduling.

    You're the one that needs help, not us. I suggest you listen to suggestions and think about them instead of being negative.

    Munchies_Matt wrote:

    I have a USB bus analyser running and tracing from my driver thats telling me its taking over 4 seconds for the waiting thread to get scheduled

    That's telling you there's problems in your code, not that there's problems with the thread handling in Windows.

    M Offline
    M Offline
    Munchies_Matt
    wrote on last edited by
    #12

    Albert Holguin wrote:

    You're the one that needs help

    No I don't. Just pointing out the crap that is Microsoft.

    A 1 Reply Last reply
    0
    • M Munchies_Matt

      Albert Holguin wrote:

      You're the one that needs help

      No I don't. Just pointing out the crap that is Microsoft.

      A Offline
      A Offline
      Albert Holguin
      wrote on last edited by
      #13

      Then why are you posting this to Q&A? I can tell you that signaling isn't slow, you have something wrong with your code... but you somehow refuse to listen. I suggest you set up a test scenario and figure out what's wrong with your code before blaming something that's been around and widely used for years.

      M 1 Reply Last reply
      0
      • A Albert Holguin

        Then why are you posting this to Q&A? I can tell you that signaling isn't slow, you have something wrong with your code... but you somehow refuse to listen. I suggest you set up a test scenario and figure out what's wrong with your code before blaming something that's been around and widely used for years.

        M Offline
        M Offline
        Munchies_Matt
        wrote on last edited by
        #14

        Dot you think that well inside 4 to 8 seconds the thread with the read file should get de-scheduled and the one with the write file scheduled within a reasonable time of the wait being satisfied? Clearly it isn't. That's the problem. I shouldn't have to put the read file thread to sleep, it should be descheduled automatically.

        1 Reply Last reply
        0
        • M Munchies_Matt

          You have seen the code I supplied, it really is as simple as it looks: There are two write files, in two different threads. Both are synchronous write files. When the first write file completes it and sets an event and goes into a read cycle. The second write file is in a thread waiting for the event to get signalled. The time between the two write files is often many seconds. What is happening during that time is a setevent and a wait being satisfied.

          F Offline
          F Offline
          Frankie C
          wrote on last edited by
          #15

          Where the system spend the delay time: before or after the WaitForSingleObject or SetEvent? Looking to the data over USB from external analyzer doesn't tell you. How can you be so sure that the delay come from the thread synch if you don't know when it gets out of it? This is what people here are asking you.

          M 1 Reply Last reply
          0
          • F Frankie C

            Where the system spend the delay time: before or after the WaitForSingleObject or SetEvent? Looking to the data over USB from external analyzer doesn't tell you. How can you be so sure that the delay come from the thread synch if you don't know when it gets out of it? This is what people here are asking you.

            M Offline
            M Offline
            Munchies_Matt
            wrote on last edited by
            #16

            I don't know, I only have the external events; the two write files, to go by.

            Frankie-C wrote:

            How can you be so sure that the delay come from the thread synch if you don't know when it gets out of it

            Why would a thread schedule, look at a while statement, and then either stall before the write file, or somewhere inside it? You cant honestly suggest the thread timeslice is in the order of seconds; the thread doing the read file should be descheduled and the recently waiting thread should be run far quicker than that.

            F 1 Reply Last reply
            0
            • M Munchies_Matt

              I don't know, I only have the external events; the two write files, to go by.

              Frankie-C wrote:

              How can you be so sure that the delay come from the thread synch if you don't know when it gets out of it

              Why would a thread schedule, look at a while statement, and then either stall before the write file, or somewhere inside it? You cant honestly suggest the thread timeslice is in the order of seconds; the thread doing the read file should be descheduled and the recently waiting thread should be run far quicker than that.

              F Offline
              F Offline
              Frankie C
              wrote on last edited by
              #17

              I've been not very clear. I didn't meant the thread scheduling, but the WaitForSingleObject. I'll try to clarify my question: are you sure that your code is in the WaitForSingleObject waiting for the event, and when the event is set the code take a walk around and after some time remember that it was waiting for something and proceed? Or maybe the execution is wasted in different instructions (i.e. the file read or write that are in your code) while the event is set, then getting out few seconds later executes the WaitForSingleObject find the event set and jumps out immediatley (as is exepected from WaitForSingleObject), bat late anytime? The point is that the wait for objects is the base of synch for all software in windows, should it behave as you say nothing should work. That is the reason why we believe that the source of delay should be somewhere else (driver delays, timeouts or else). Then for the quality of MS code there is a lot of space for discussions... :laugh:

              M 1 Reply Last reply
              0
              • F Frankie C

                I've been not very clear. I didn't meant the thread scheduling, but the WaitForSingleObject. I'll try to clarify my question: are you sure that your code is in the WaitForSingleObject waiting for the event, and when the event is set the code take a walk around and after some time remember that it was waiting for something and proceed? Or maybe the execution is wasted in different instructions (i.e. the file read or write that are in your code) while the event is set, then getting out few seconds later executes the WaitForSingleObject find the event set and jumps out immediatley (as is exepected from WaitForSingleObject), bat late anytime? The point is that the wait for objects is the base of synch for all software in windows, should it behave as you say nothing should work. That is the reason why we believe that the source of delay should be somewhere else (driver delays, timeouts or else). Then for the quality of MS code there is a lot of space for discussions... :laugh:

                M Offline
                M Offline
                Munchies_Matt
                wrote on last edited by
                #18

                I understood, lets go back to the code: As you say is the write thread getting stuck in the wait, or in the write. The thing is, in either case, since both threads are of equal priority, the read thread Write thread:

                while(pDlg->Go)
                {
                	WriteFile(gh, buf, towrite, &written, 0);
                	WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                }
                

                Read thread:

                while(pDlg->Go)
                {
                	ReadFile(gh, buf, 1024 - readTot, &read, 0);
                
                            ... process data, snipped
                
                	WriteFile(gh, &ACK, 1, &written, 0);
                	SetEvent(pDlg->WriteTrigger);
                    }
                

                should get descheduled and the write thread scheduled in an even way, they should both get CPU time equally. What looks to be happening is that the read thread is having a lot of CPU time (its a multi core CPU) and blocking the handle at an IO level thus stalling the write. What I find really surprising is that the read thread can run for up to 8 seconds. The solution would be for the read thread to wait on the event immediately after it sets it, and then for the write thread to set it and wait immediately: Write thread:

                while(pDlg->Go)
                {
                	WriteFile(gh, buf, towrite, &written, 0);
                            SetEvent(pDlg->WriteTrigger);
                	WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                }
                

                Read thread:

                while(pDlg->Go)
                {
                	ReadFile(gh, buf, 1024 - readTot, &read, 0);
                
                            ... process data, snipped
                
                	WriteFile(gh, &ACK, 1, &written, 0);
                	SetEvent(pDlg->WriteTrigger);
                            WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                
                    }
                

                But that is an ugly piece of code to look at! :)

                F 1 Reply Last reply
                0
                • M Munchies_Matt

                  I understood, lets go back to the code: As you say is the write thread getting stuck in the wait, or in the write. The thing is, in either case, since both threads are of equal priority, the read thread Write thread:

                  while(pDlg->Go)
                  {
                  	WriteFile(gh, buf, towrite, &written, 0);
                  	WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                  }
                  

                  Read thread:

                  while(pDlg->Go)
                  {
                  	ReadFile(gh, buf, 1024 - readTot, &read, 0);
                  
                              ... process data, snipped
                  
                  	WriteFile(gh, &ACK, 1, &written, 0);
                  	SetEvent(pDlg->WriteTrigger);
                      }
                  

                  should get descheduled and the write thread scheduled in an even way, they should both get CPU time equally. What looks to be happening is that the read thread is having a lot of CPU time (its a multi core CPU) and blocking the handle at an IO level thus stalling the write. What I find really surprising is that the read thread can run for up to 8 seconds. The solution would be for the read thread to wait on the event immediately after it sets it, and then for the write thread to set it and wait immediately: Write thread:

                  while(pDlg->Go)
                  {
                  	WriteFile(gh, buf, towrite, &written, 0);
                              SetEvent(pDlg->WriteTrigger);
                  	WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                  }
                  

                  Read thread:

                  while(pDlg->Go)
                  {
                  	ReadFile(gh, buf, 1024 - readTot, &read, 0);
                  
                              ... process data, snipped
                  
                  	WriteFile(gh, &ACK, 1, &written, 0);
                  	SetEvent(pDlg->WriteTrigger);
                              WaitForSingleObject(pDlg->WriteTrigger, INFINITE);
                  
                      }
                  

                  But that is an ugly piece of code to look at! :)

                  F Offline
                  F Offline
                  Frankie C
                  wrote on last edited by
                  #19

                  Yes ugly indeed, you could consider using Sleep() with a very short timeout to suspend current thread of execution. This should fix back the synchronization.

                  M 1 Reply Last reply
                  0
                  • F Frankie C

                    Yes ugly indeed, you could consider using Sleep() with a very short timeout to suspend current thread of execution. This should fix back the synchronization.

                    M Offline
                    M Offline
                    Munchies_Matt
                    wrote on last edited by
                    #20

                    Sleeps arent performance optimal though, and this test app is designed to hammer some hardware hard for a day or so, so I need it to run as quick as it can. Anyway, I put the second write into the same thread as the read and its running OK now of course.

                    F 1 Reply Last reply
                    0
                    • M Munchies_Matt

                      Sleeps arent performance optimal though, and this test app is designed to hammer some hardware hard for a day or so, so I need it to run as quick as it can. Anyway, I put the second write into the same thread as the read and its running OK now of course.

                      F Offline
                      F Offline
                      Frankie C
                      wrote on last edited by
                      #21

                      I see, my suggestion was to put a minimal delay of 1ms to use the side effetct of suspending thread execution. Anyway the solution to avoid handle concurrency is the fastest per sure.

                      M 1 Reply Last reply
                      0
                      • F Frankie C

                        I see, my suggestion was to put a minimal delay of 1ms to use the side effetct of suspending thread execution. Anyway the solution to avoid handle concurrency is the fastest per sure.

                        M Offline
                        M Offline
                        Munchies_Matt
                        wrote on last edited by
                        #22

                        Yeah, triggering a small sleep might be enough to get the thread off the CPU for long enough.

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups