Question about design.

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Igor1024
Member
Member
Posts: 32
Joined: Mon Apr 11, 2011 12:19 am

Question about design.

Post by Igor1024 »

I'm planning to create monotask os with modular kernel and have some ideas about it. (Correct me if I'm wrong.)
So, the main function of kernel is memory management and task management (however it will just operate with 1 task), another functions are assigned for modules: disk module, text GUI module and another.
Interrupts should be sent to active program (to operate with them it should use syscalls of modules)...
So, that's the brief plan. Please, if I'm wrong in general detail correct me.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Question about design.

Post by Combuster »

Interrupts are normally handled by the drivers because they know what they are for. Good OS design makes the actual programs independent of the hardware details.
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
Post Reply