tear out old file stream tick; switch disasm to using new file stream for interleaved text lines

This commit is contained in:
Ryan Fleury
2025-09-24 12:09:59 -07:00
parent 8e68187107
commit 7f2a066e8f
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -362,7 +362,7 @@ dasm_artifact_create(String8 key, B32 *retry_out)
{
// TODO(rjf): need redirection path - this may map to a different path on the local machine,
// need frontend to communicate path remapping info to this layer
C_Key key = fs_key_from_path_range(file_normalized_full_path, r1u64(0, max_U64), 0);
C_Key key = fs_key_from_path_range_new(file_normalized_full_path, r1u64(0, max_U64), 0);
TXT_LangKind lang_kind = txt_lang_kind_from_extension(file_normalized_full_path);
U64 endt_us = max_U64;
U128 hash = {0};
+2
View File
@@ -372,6 +372,7 @@ fs_hash_from_path_range(String8 path, Rng1U64 range, U64 endt_us)
internal void
fs_async_tick(void)
{
#if 0
ProfBeginFunction();
Temp scratch = scratch_begin(0, 0);
@@ -530,4 +531,5 @@ fs_async_tick(void)
scratch_end(scratch);
ProfEnd();
#endif
}