this post was submitted on 01 Apr 2024
46 points (97.9% liked)

Game Development

3366 readers
37 users here now

Welcome to the game development community! This is a place to talk about and post anything related to the field of game development.

Community Wiki

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Aux@lemmy.world -1 points 6 months ago (1 children)

Modern CPUs and operating systems have distinction between data and code in memory. Usually only privileged processes have the right to make data executable. If you load some random stuff into memory and tell your CPU to execute it as a code, you'll get nuked by OS.

[โ€“] uis@lemmy.world 1 points 5 months ago

Usually only privileged processes have the right to make data executable.

Not true. Only kernel can mark memory page as executable, but any process can request to kernel to do so. This is why JIT compilers work.