mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 22:08:41 +00:00
fix task entry points in breakpad converter
This commit is contained in:
@@ -61,8 +61,7 @@ struct P2B_BakeUnitVMapOut
|
|||||||
RDI_U64 vmap_entries_count;
|
RDI_U64 vmap_entries_count;
|
||||||
};
|
};
|
||||||
|
|
||||||
internal void *
|
internal TS_TASK_FUNCTION_DEF(p2b_bake_unit_vmap_task__entry_point)
|
||||||
p2b_bake_unit_vmap_task__entry_point(Arena *arena, void *p)
|
|
||||||
{
|
{
|
||||||
P2B_BakeUnitVMapIn *in = (P2B_BakeUnitVMapIn *)p;
|
P2B_BakeUnitVMapIn *in = (P2B_BakeUnitVMapIn *)p;
|
||||||
P2B_BakeUnitVMapOut *out = push_array(arena, P2B_BakeUnitVMapOut, 1);
|
P2B_BakeUnitVMapOut *out = push_array(arena, P2B_BakeUnitVMapOut, 1);
|
||||||
@@ -100,8 +99,7 @@ struct P2B_BakeUnitOut
|
|||||||
RDI_Line *unit_lines;
|
RDI_Line *unit_lines;
|
||||||
};
|
};
|
||||||
|
|
||||||
internal void *
|
internal TS_TASK_FUNCTION_DEF(p2b_bake_unit_task__entry_point)
|
||||||
p2b_bake_unit_task__entry_point(Arena *arena, void *p)
|
|
||||||
{
|
{
|
||||||
P2B_BakeUnitIn *in = (P2B_BakeUnitIn *)p;
|
P2B_BakeUnitIn *in = (P2B_BakeUnitIn *)p;
|
||||||
P2B_BakeUnitOut *out = push_array(arena, P2B_BakeUnitOut, 1);
|
P2B_BakeUnitOut *out = push_array(arena, P2B_BakeUnitOut, 1);
|
||||||
@@ -138,8 +136,7 @@ struct P2B_DumpProcChunkIn
|
|||||||
RDIM_SymbolChunkNode *chunk;
|
RDIM_SymbolChunkNode *chunk;
|
||||||
};
|
};
|
||||||
|
|
||||||
internal void *
|
internal TS_TASK_FUNCTION_DEF(p2b_dump_proc_chunk_task__entry_point)
|
||||||
p2b_dump_proc_chunk_task__entry_point(Arena *arena, void *p)
|
|
||||||
{
|
{
|
||||||
P2B_DumpProcChunkIn *in = (P2B_DumpProcChunkIn *)p;
|
P2B_DumpProcChunkIn *in = (P2B_DumpProcChunkIn *)p;
|
||||||
String8List *out = push_array(arena, String8List, 1);
|
String8List *out = push_array(arena, String8List, 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user