restart path, breakpoint vaddr editing path

This commit is contained in:
Ryan Fleury
2024-10-14 15:10:44 -07:00
parent 1bf01c790b
commit eadd49072a
3 changed files with 11 additions and 22 deletions
+9
View File
@@ -2506,6 +2506,15 @@ rd_eval_space_write(void *u, E_Space space, void *in, Rng1U64 range)
}
StringMemberCase(address_location)
{
U64 vaddr = 0;
if(try_u64_from_str8_c_rules(str8_cstring_capped(in, (U8 *)in + 4096), &vaddr))
{
RD_Entity *loc = rd_entity_child_from_kind_or_alloc(entity, RD_EntityKind_Location);
rd_entity_equip_vaddr(loc, vaddr);
rd_entity_equip_name(loc, str8_zero());
loc->flags &= ~RD_EntityFlag_HasTextPoint;
result = 1;
}
}
StringMemberCase(function_location)
{
+1 -1
View File
@@ -5,7 +5,6 @@
//~ rjf: 0.9.12 TODO notes
//
// [ ] remainder of @msgs pass:
// [ ] entity listers - kill-specific-process, etc.
// [ ] new `restart processes` path
// [ ] remainder of @msgs
//
@@ -521,6 +520,7 @@
// [x] new universal ctx menu, hover, tooltips systems
// [x] `switch` replacement (recent files history)
// [x] resolving name as file or #include
// [x] entity listers - kill-specific-process, etc.
////////////////////////////////
//~ rjf: Build Options