We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breakpoints within threads not working properly.
This is my code .
import sys.thread.Thread; class Main { static function printMessage(message:String = "Default Message") { trace(message); } static function main() { printMessage(); #if (target.threaded) sys.thread.Thread.create(() -> { while (true) { trace("other thread"); Sys.sleep(1); printMessage(); } }); Sys.sleep(300); #end } }
my build-cpp.hxml
-cp src -D analyzer-optimize --debug -lib hxcpp-debug-server -main Main --cpp bin/cpp
build cpp appliction with debug info :
haxe build-cpp.hxml
My vscode debugger config is :
{ "name": "HXCPP", "type": "hxcpp", "request": "launch", "program": "${workspaceFolder}/bin/cpp/Main-debug" }
Start the debugger . The breakpoint in another thread is not working .
Please help me thanks !
The text was updated successfully, but these errors were encountered:
I switch my haxe to latest(4.3.3) ,The problem still exists.
Sorry, something went wrong.
Try to reproduce via console interface please https://github.com/HaxeFoundation/hxcpp-debugger/wiki/Getting-started
No branches or pull requests
Breakpoints within threads not working properly.
This is my code .
my build-cpp.hxml
build cpp appliction with debug info :
My vscode debugger config is :
Start the debugger . The breakpoint in another thread is not working .
Please help me thanks !
The text was updated successfully, but these errors were encountered: