I'm working with a C++ DLL project. I tried to use simple boost thread in there. here is the source-code. this run time exception at uploadThread = boost::thread(uploadFileThread); line. Any idea?
Unhandled exception at 0x6fa1bd89 (Controller.dll) in UserInterfaces.exe: 0xC0000005: Access violation reading location 0xbaadf05d.
Controller.h
namespace controller{
class CController {
public:
boost::thread uploadThread;
}
}
Controller.cpp
namespace controller{
static void uploadFileThread(){}
void CController::StartFileUpload(){
uploadThread = boost::thread(uploadFileThread);
uploadThread.join();
}
}
main.cpp
int main(){
controller::CController my_Controller;
my_Controller.StartFileUpload();
return 0;
}
0xBAADF00Dwhen a debugger is attached. – James McNellis Jan 31 at 7:060xBAADF00Dto help you to identify use of uninitialized memory. (The Win32HeapAllocfunction performs this fill). The exception message you quote reports that an access violation occurred when attempting to access the memory at address0xbaadf05d. The upper three bytes of this address are almost certainly uninitialized memory. – James McNellis Jan 31 at 7:25CControllerbut define a variable of typeController, there are missing semicolons, missing using directives or namespace specifiers etc. Main is supposed to return int, not void. Your class definition is missing the declaration ofStartFileUploadand so on. Please give us a SSCCE from the real code, so we can see what the real problem is. – Arne Mertz Jan 31 at 7:26