fill out first pass implementations of raddbg_markup features; thread names, thread colors, format-string output-debug-string helper, attachment-checking

This commit is contained in:
Ryan Fleury
2025-03-28 10:56:41 -07:00
parent 4cc883a353
commit 3911a66b30
10 changed files with 137 additions and 31 deletions
+9 -3
View File
@@ -2670,7 +2670,15 @@ dynamic_step_test(void){
////////////////////////////////
int
mule_main(int argc, char** argv){
mule_main(int argc, char** argv)
{
raddbg_thread_name("mule_main_thread");
raddbg_thread_color_rgba(1, 0, 0, 1);
if(raddbg_is_attached())
{
raddbg_log("raddbg is attached!\n");
}
mule_init();
// NOTE(allen): Eval Tests
@@ -2735,5 +2743,3 @@ mule_main(int argc, char** argv){
return(0);
}