gets the current code address in the instrumented code in the child process
| 194 | // gets the current code address in the instrumented code |
| 195 | // *in the child process* |
| 196 | size_t TinyDBR::GetCurrentInstrumentedAddress(ModuleInfo* module) |
| 197 | { |
| 198 | return (size_t)module->instrumented_code_remote + module->instrumented_code_allocated; |
| 199 | } |
| 200 | |
| 201 | // Writes the modified code from the debugger process into the target process |
| 202 | void TinyDBR::CommitCode(ModuleInfo* module, size_t start_offset, size_t size) |
no outgoing calls
no test coverage detected