The DAP start_thread helper function has a 'name' parameter that is
unused. Apparently I forgot to hook it up to the thread constructor.
This patch fixes the oversight.
"""Start a new thread, invoking TARGET with *ARGS there.
This is a helper function that ensures that any GDB signals are
correctly blocked."""
- result = gdb.Thread(target=target, args=args, daemon=True)
+ result = gdb.Thread(name=name, target=target, args=args, daemon=True)
result.start()