[cs33211] CS33211 Project Question

Mikhail Nesterenko mikhail at cs.kent.edu
Fri Oct 12 15:23:20 EDT 2012


> I am also getting a runtime error with my program that says "terminate
> called without an active exception". I am using g++.

The "terminate without an active exception" message is a hint that, at
some point in your program, exception handling got broken.

It may be caused by the thread object destructing before the thread it
encapsulated has exited. Are you sure you have join() in the main
thread for all the threads that you create?

Thanks,
--
Mikhail


More information about the cs33211 mailing list