Page 1 of 1

The design of Nexware

Posted: Wed Jan 27, 2021 8:38 am
by nexos
Hello,
For my current OS, I have spent a fair amount of time planning its design. Its design is described in the image attached
Image
I think it should be fairly self explanatory, NDS data provider is async I/O model that I am designing
Please comment on the design :)
Thanks,
nexos

Re: The design of Nexware

Posted: Wed Jan 27, 2021 9:55 am
by PeterX
I think your design is very reasonable and very thorough.
Only critique I have: Can the GUI manager be outside of the subsystems? Should it perhaps better be _under_ the subsystems (and partially in the subsystems)?

Greetings
Peter

Re: The design of Nexware

Posted: Wed Jan 27, 2021 10:03 am
by nexos
The GUI is in theory under the subsystems. I planned on having each subsystem abstract there own interface on top of the GUI manager (i.e., have POSIX create an X compatibility layer). The only reason it isn't actually there is because I didn't have enough room on the image :lol: .

Re: The design of Nexware

Posted: Wed Jan 27, 2021 10:10 am
by PeterX
nexos wrote:The GUI is in theory under the subsystems. I planned on having each subsystem abstract there own interface on top of the GUI manager (i.e., have POSIX create an X compatibility layer). The only reason it isn't actually there is because I didn't have enough room on the image :lol: .
OK! Then from my point of view the design is perfect.

Greetings
Peter

Re: The design of Nexware

Posted: Wed Jan 27, 2021 10:24 am
by nexos
PeterX wrote:
nexos wrote:The GUI is in theory under the subsystems. I planned on having each subsystem abstract there own interface on top of the GUI manager (i.e., have POSIX create an X compatibility layer). The only reason it isn't actually there is because I didn't have enough room on the image :lol: .
OK! Then from my point of view the design is perfect.

Greetings
Peter
Thanks! I've spent the past few moths muddling through books on Unix design, Windows design, and looking at things on the net, and this was my result :) .