mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 13:28:40 +00:00
renormalize line endings
This commit is contained in:
@@ -191,7 +191,7 @@ async_thread_entry_point(void *params)
|
|||||||
{
|
{
|
||||||
MutexScope(async_tick_start_mutex) cond_var_wait(async_tick_start_cond_var, async_tick_start_mutex, os_now_microseconds()+100000);
|
MutexScope(async_tick_start_mutex) cond_var_wait(async_tick_start_cond_var, async_tick_start_mutex, os_now_microseconds()+100000);
|
||||||
#if defined(FILE_STREAM_H)
|
#if defined(FILE_STREAM_H)
|
||||||
fs_async_tick();
|
fs_tick();
|
||||||
#endif
|
#endif
|
||||||
cond_var_broadcast(async_tick_stop_cond_var);
|
cond_var_broadcast(async_tick_stop_cond_var);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2850,7 +2850,7 @@ str8_compar(String8 a, String8 b, B32 ignore_case)
|
|||||||
return cmp;
|
return cmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int
|
internal int str8_compar_ignore_case(const void *a, const void *b)
|
||||||
{
|
{
|
||||||
return str8_compar(*(String8*)a, *(String8*)b, 1);
|
return str8_compar(*(String8*)a, *(String8*)b, 1);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -241,10 +241,10 @@ fs_properties_from_path(String8 path)
|
|||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Asynchronous Tick
|
//~ rjf: Tick
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
fs_async_tick(void)
|
fs_tick(void)
|
||||||
{
|
{
|
||||||
Temp scratch = scratch_begin(0, 0);
|
Temp scratch = scratch_begin(0, 0);
|
||||||
|
|
||||||
|
|||||||
@@ -122,8 +122,8 @@ internal U128 fs_hash_from_path_range(String8 path, Rng1U64 range, U64 endt_us);
|
|||||||
internal FileProperties fs_properties_from_path(String8 path);
|
internal FileProperties fs_properties_from_path(String8 path);
|
||||||
|
|
||||||
////////////////////////////////
|
////////////////////////////////
|
||||||
//~ rjf: Asynchronous Tick
|
//~ rjf: Tick
|
||||||
|
|
||||||
internal void fs_async_tick(void);
|
internal void fs_tick(void);
|
||||||
|
|
||||||
#endif // FILE_STREAM_H
|
#endif // FILE_STREAM_H
|
||||||
|
|||||||
Reference in New Issue
Block a user