Skip to content

Commit c2ee8e7

Browse files
committed
eh?
1 parent 5b58fbc commit c2ee8e7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_remote_debugging/frames.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ parse_frame_object(
197197
char frame[SIZEOF_INTERP_FRAME];
198198
*address_of_code_object = 0;
199199

200-
Py_ssize_t bytes_read = _Py_RemoteDebug_PagedReadRemoteMemory(
200+
Py_ssize_t bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
201201
&unwinder->handle,
202202
address,
203203
SIZEOF_INTERP_FRAME,

Modules/_remote_debugging/threads.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ unwind_stack_for_thread(
303303
StackChunkList chunks = {0};
304304

305305
char ts[SIZEOF_THREAD_STATE];
306-
int bytes_read = _Py_RemoteDebug_PagedReadRemoteMemory(
306+
int bytes_read = _Py_RemoteDebug_ReadRemoteMemory(
307307
&unwinder->handle, *current_tstate, (size_t)unwinder->debug_offsets.thread_state.size, ts);
308308
if (bytes_read < 0) {
309309
set_exception_cause(unwinder, PyExc_RuntimeError, "Failed to read thread state");

0 commit comments

Comments
 (0)