zeke icon indicating copy to clipboard operation
zeke copied to clipboard

MP support

Open OlliV opened this issue 4 years ago • 0 comments

  • [ ] Ensure proc MP safety
  • [ ] Current proc/thread global variables are not valid for MP
    • Global variables for current task can't be used on MP system:
    • [ ] extern volatile pid_t current_process_id;
    • [ ] extern volatile proc_info_t * curproc;
    • [ ] extern volatile threadInfo_t * current_thread;
    • These should be possibly replaced with arrays which specify current value for each core.
  • [ ] MP scheduling support is only partially implemented and lacks testing

OlliV avatar Feb 11 '20 22:02 OlliV