Disable the hash-perf feature of __pthread_key_create. Since it chose a starting hash based off of stack address, it was nondeterministic.
This commit is contained in:
parent
ffed0d2205
commit
763ee5c424
|
@ -293,6 +293,12 @@ namespace BizHawk.Emulation.Cores.Waterbox
|
|||
s.Name,
|
||||
s.Size);
|
||||
}
|
||||
Console.WriteLine("GDB Symbol Load:");
|
||||
Console.WriteLine("add-sym {0} {1} -s .data {2} -s .bss {3}",
|
||||
ModuleName,
|
||||
_sectionsByName[".text"].Start,
|
||||
_sectionsByName[".data"].Start,
|
||||
_sectionsByName[".bss"].Start);
|
||||
}
|
||||
|
||||
public IntPtr Resolve(string entryPoint)
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue