When debugging my project in visual studio (2010) I get the message "no source available" once I step into one of my files. The file is now just a test file with one function:
void foo()
{
float testbuf[200000] = {0};
}
If i allocate a smaller buffer the debugger enters the file normally. In my debugging view my "call stack location" is empty and there is "no disassembly available".
It looks to me like there is a maximum amount of data that the visual studio debugger can handle or something in this direction.
Could someone tell me if this is the problem and how I can fix it. Maybe some Visual Studio settings can help me out?