Skip to content

Commit

Permalink
Update osi_linux.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
lacraig2 committed Oct 17, 2024
1 parent 81cb6a0 commit bbf9f45
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions panda/plugins/osi_linux/osi_linux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,10 @@ void init_per_cpu_offsets(CPUState *cpu) {
TARGET_PTR_FMT, (target_ptr_t)ki.task.per_cpu_offset_0_addr);
return;
}
// AARCH64 has per_cpu_offsets, but doesn't use them for task structs!
#ifdef TARGET_AARCH64
return;
#endif

// skip update because of failure to read from per_cpu_offsets_addr
target_ptr_t per_cpu_offset_0_addr;
Expand Down

0 comments on commit bbf9f45

Please sign in to comment.