Error: Exception Breakpoint
-
Hello all I'm getting this error in my code and my stack trace is the following . _NMSG_WRITE(10) line 221 abort() line 44 + 7 bytes AILERONPUSH! terminate(void) + 111 bytes AILERONPUSH! _CxxUnhandledExceptionFilter(struct _EXCEPTION_POINTERS *) + 46 bytes KERNEL32! 77eab45f() KERNEL32! 77e8b2eb() it's saying that "user breakpoint reached at xxxxx". I'm having an application in which I've one parent thread and 5 child threads. parent thread read records from database and assign them one by one to child threads for processing. I'm maintaining a queue which contains handles to child threads. Queue will be empty when all the threads are assigned a record and at this point parent thread will wait. once each thread finishes it's job it will put it's handle in queue so that parent can assign him the next record. I'm experiencing the above error only if the no. of records to be processed are more than no. of threads( In this case threads will be used repetitively by parent thread depending upon their availablility in queue). Can any one help me resolve this error? It'll be of great help if anyone can give me insight into situation's that cause the above error. Thanks for your help Hari.