I was wondering if it is possible to use hooking (like Detours) to remove non-determinism in an arbitrary application.
We can assume single-thread applications (to ignore non-determinism caused by races and scheduling).
My first guess was to override rand() in order to have predictable and repeatable output for any function asking for pseudo-random numbers, regardless of the seed.
Are there any other commonly used functions that I should consider overriding?
I know that there is no flawless solution here, but one that works for most applications will probably do. Also if there is another way to solve this problem, I will be interesting in reading about it.