Skip to content

VM pausing and unpausing

Bennett Blodinger edited this page Mar 18, 2017 · 1 revision

Pausing and Unpausing

  • vm.pause()
  • vm.unpause()

Pauses and unpauses the current target process.

Internally, a reference count is used. So if you call vm.pause() twice consecutively, then you have to call vm.unpause() twice to resume the process.

Raises a bitslicer.VirtualMemoryError if pausing or unpausing fails for some unexpected reason.