views:

54

answers:

3

I am currently in an university operating system class and we are working on the windows kernel for our projects. I am however having a real hard time dredging up resources to help learn the basics of os development, windows kernel development and just generally getting around the windows api. We are using the book Microsoft Internals by Russinovich but I was wondering if any of you have some great resources to recommend me, whether book, online guides or some old class notes. Thanks!

+2  A: 

microsoft kernel dev? that's just weird. what university are you at?

one of the most interesting things about kernels, in my opinion, is the scheduler algorithms. I'd recommend you check that out.

I can't imagine where you'd start looking for windows stuff though. I did it with the linux kernel and there's a LOT of resources (of course).

http://oreilly.com/catalog/linuxkernel/chapter/ch10.html

Oren Mazor
university of maryland college park
Javed Ahamed
ah, cleared up with your other comment (wrk). I still think the scheduler is the most complex and interesting part of any kernel, by far, so I recommend you look up how the wrk handles that.
Oren Mazor
+2  A: 

The third edition of Tanenbaum's Modern Operating Systems has a chapter devoted to the Vista kernel. I haven't looked into that chapter (I only read the Linux one), but as far as big-picture stuff, it's fantastic. I'm not sure what level of detail you're looking for, but that might be a good resource to check out.

Tim Yates
This seems like it might help slightly but I will still be looking for more things :/. Thanks though!
Javed Ahamed
+2  A: 

What specifically are you looking for? Online resources? For that, OSROnline is one of the better websites. Alot of kernel development knowledge is found in the MS and the OSR Mailing lists, that's another place to check that might be better than Stack overflow.

Specifically books, there is the Programming WDM,Developing drivers with KMDF and Advance Windows Debugging. The last specifically will not teach you so much about the kernel and more how to navigate inside it, something you will do quite often if you are writing drivers or researching parts of it.

In order to write drivers, the easiest way is probably to take Windows Driver samples and hack at them, stare the results with windbg and learn more.

Daniel Goldberg