Tagged Questions

5
votes
1answer
278 views

Learn Operating System Development using Minix 2 or 3?

I took a class this spring about generic operating system theories and principles, and now I'd like to spend the summer working through Tanenbaum's Operating Systems book, looking through Minix ...
4
votes
5answers
206 views

Minix vs Linux for Learning Operating System Design?

I wish to learn operating system design. I was wondering if I should tackle Minix or GNU/Linux in the process? I like books so I would be following mainly a book, though video resources (presumably ...
2
votes
2answers
204 views

policy and mechanism

I was going through my operating systems textbook and I came across the concept of "separating mechanism and policy". I wasn't sure of what that meant so I checked out wikipedia which I must admit, ...
1
vote
0answers
187 views

Cannot call new system call

In the way of developing a new server (Distributed File System server) on minix3, we thought about implementing some system calls will be used to communicate with the server via the message passing ...
0
votes
2answers
92 views

How to understand stdio.h are different on different operating systems

First of all, I am talking about UNIX-like systems. I look at the definition of the "FILE" struct at Mac OS, Linux, Minix and K&R C book, they are all different. In K&R C book, it is quite ...
0
votes
1answer
105 views

minix3 filesystem implementation

I was just going through section 5.3 of Operating Systems: Design and Implementation: "File system implementation", and I have a doubt regarding disk management using linked lists (table ...
-1
votes
1answer
94 views

Undefined reference: _m_in

In the process of installing a new server on minix (servers/dfs) we created a system call to communicate with the server via the message passing interface minix provides. The problem is that when we ...