Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Are there any good (entry-level) tutorials on adding system calls to FreeBSD via kernel loadable modules? Specifically, the required form of the methods, getting information from processes, etc.

share|improve this question
I should note that this isn't a homework assignment in itself, but is a portion of a larger assignment. :) – dckrooney Oct 9 '10 at 3:53
I'm just curious. Whats the complete assignment? – claws Oct 9 '10 at 5:18
1  
The complete assignment involves creating a separate process scheduling algorithm. – dckrooney Oct 9 '10 at 6:12
Hey! I just bumped into this question. How did it go? YOu said, you'll post your solution here. :) – claws Feb 21 '11 at 3:08

1 Answer

up vote 6 down vote accepted

I'm really happy to see that your professor is giving you such practical assignments. I wish I had such profs.

Anyway, the thing is when you are working in the kernel domain you can hardly find any resources. People who are working in kernel domain don't document stuff or write tutorials. So, its really hard to find any "Entry Level" documents. Also, even if you find any such tutorial, the things in kernel keeps on changing and document wont be updated. When I started I had to learn things by reading the kernel code.

Another important thing is Linux is more documented than any UNIX. Sometimes you can read Linux stuff and port that knowledge to UNIX. Enough with the complaining. Now here are the resources that might help you.

BSD UNIX:

Linux:

share|improve this answer
Thanks so much! This was very helpful. – dckrooney Oct 9 '10 at 20:37
@dcmoebius: I'm glad it helped you. If you don't have any problem sharing your code. I would suggest you to write a tutorial/blog post on this assignment. And give the link here. It will help others. – claws Oct 10 '10 at 4:01
That's a great idea. I'll do that, but unfortunately later assignments are based on this one. So I'll wait a couple weeks to release a "solution" :P – dckrooney Oct 21 '10 at 3:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.