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:
nattthebear 2017-05-28 11:58:08 -04:00
parent ffed0d2205
commit 763ee5c424
2 changed files with 6 additions and 0 deletions

View File

@ -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.