Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

c++ sigabrt

There's another simple cause in case of c++.

std::thread::~thread{
    if((joinable ())
        std::terminate ();
}

i.e. scope of thread ended but you forgot to call either

thread::join();

or

thread::detach();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sigabrt
ADD COMMENT
Topic
Name
1+8 =