Multi-threading and globals on Pumpkin OS

The developer of Pumpkin OS (which we talked about before), a port of the Palm OS to x86-64, has written a very interesting post about dealing with multi-threading. Pumpkin OS is multi-threaded from the start, but several parts of the operating system rely on old parts of Palm OS that were never meant to be multi-threaded – such as the M68K emulator used to run Palm OS applications written for that architecture.

The solution I came up with uses something called thread local storage. Each thread has access to a private memory region that the main thread can setup in advance. When a deeply nested function needs to access global state, instead of using a global variable, it gets a pointer to its local storage. Each emulated M68K thread writes to its own M68K state, not interfering with another thread. And no function prototype needs to change. The first step was to identify all global variables used by the M68K emulator, which were surprisingly few.

I’m so excited about this project.

8 Comments

  1. 2022-09-15 11:51 pm
    • 2022-09-16 5:27 am
      • 2022-09-16 9:27 am
      • 2022-09-16 2:47 pm
    • 2022-09-16 10:43 am
    • 2022-09-16 10:59 am
      • 2022-09-16 11:26 am
    • 2022-09-17 6:15 pm