Tagged Questions
The minix tag has no wiki summary.
6
votes
1answer
73 views
Resolving conflicting type for functions with the same name in two external libraries
I have included the following libraries into my code.
#include <minix/drivers.h>
#include <curl/curl.h>
#include <sys/stat.h>
#include <time.h>
#include <assert.h>
...
5
votes
1answer
277 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
205 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 ...
3
votes
5answers
428 views
Number of Running Processes on a system - C question
So, this seemed simple at first, but after crawling Google and here, the answer doesn't seem as simple as I first thought.
Basically, I'm editing a MINIX kernel as part of a practical for my ...
3
votes
4answers
157 views
Meaning of public modificator for function in C
PUBLIC void main
This is from kernel.c from Minix source. What is the meadning of public in this case?
3
votes
1answer
330 views
Does anyone here have experience developing for Minix?
Recently I have become curious about the Minix OS. http://www.minix3.org/
I am very taken with descriptions of its robustness & reliability features, but I have noticed a distinct paucity of ...
2
votes
1answer
80 views
Minix 3 stdio.h doesn't recognize FILE *f
I'm developing something on Minix 3 and, when it comes to deal with io files, I got a problem.
In the code:
#include <stdio.h> /* If I don't call any stdio funcs compiler doesnt's complain*/
...
2
votes
1answer
147 views
journaling in ext3 - Documentation
I have been looking around for documentation on how journalling is implemented in ext3 and couldn't find any good resources. I am familiar with the internals of ext2 and have gone through the ...
2
votes
2answers
198 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, ...
2
votes
1answer
232 views
A question for retrieve minix os version
Hi guys i'm having a project for the university in which (above others ) i have to get the minix os version from kernell call.I'm not a very experienced programmer so this is what i have come to (with ...
1
vote
0answers
29 views
How to return a clean error on incorrect mount with VTreeFS?
When trying to mount a VTreeFS filesystem with a set of arguments (by using options -o when mounting) we want to let it fail cleanly if the user doesn't use the predefined arguments correctly. ...
1
vote
0answers
78 views
Minix Internal Fragmentation [closed]
Possible Duplicate:
Internal Fragmentation
I have recently been working on a project to recursively list all files within a directory and output the filename, size and path.
I now need to ...
1
vote
0answers
46 views
Reading wave files for mono conversion (Minix 3)
I'm about to start working on a project for Minix 3 (in C).
My idea is to create some kind of a music player. I want to be able to read files (WAV) and then convert them to a stream of frequencies ...
1
vote
2answers
92 views
Printf not replacing format string parameters
I'm trying to do a homework assignment involving modifying some kernel code in minix and i'm having the strangest issue i've ever seen.
I'm modifying alloc.c on the pm server (for those of you ...
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
156 views
MINIX Internal Fragmentation 2
Ok so I am in the middle of writing some software in C that recursively lists all files in a given directory and now I need to work out the internal fragmentation.
I have spent a long time ...
0
votes
0answers
46 views
Bad syntax include in Minix
I am developing a project for Minix in C Language and i have a folder to put the drivers of the devices called "core". In the main.c i did an include of the vbe.h that is inside this folder and the ...
0
votes
0answers
30 views
Minix a.out missing symbol table?
I'm hoping this is a simple issue which someone can quickly answer:
I'm taking a class on Operating Systems in which we are using Minix. An assignment for this class involves reading an executable in ...
0
votes
1answer
129 views
How to get inode structure when knowing the “inode number”
I read the API of minix but still confused and failed to get the 'real' inode structure just with the inode number
We could only get "inode number" with "stat" structure, right? but after getting ...
0
votes
0answers
72 views
MINIX: Disabling default keyboard interrupt handler
I'm working on a project which i need to use minix generic interrupt handler in order to handle interrupts in my application. One of the interrupts is the IRQ 1 (Keyboard Interrupt), and my ...
0
votes
1answer
77 views
Changing the keymap in Minix 3
I'm having some trouble with an assignment I have to do. We are required to edit the source files of Minix 3 and change the function of the "@" key to display something else when pressed. The problem ...
0
votes
2answers
89 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
0answers
226 views
How to install Minix 3? [closed]
I've been looking at this operating system called Minix. I'm trying to install it to Virtual Box, but I always get the following error message:
*** kernel messages:
ested 0
rs 2 0xb957 0x83c6 0x2f24 ...
0
votes
0answers
82 views
How to create a minix filesystem with userspace tools
For an embedded device we need to create a minix filesystem which contains the program files. Currently we mount the image file via the loopback device, which is tedious since it requires ...
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 ...
0
votes
0answers
127 views
Testing a modified exec.c in Minix
I am trying to modify exec.c in minix 3.1.2a to change how it does the allocation for the new process. I am trying to make it free the previous process if there is enough memory with a hole + the ...
0
votes
1answer
559 views
Assembler: jmpf, testb and else instructions
Help me please, i don't understand this code:
...
BUFFER = 0x0600
...
rep movs jmpf BUFFER+migrate, 0 ;???
migrate:
findactive:
testb dl,dl ; ???
jns nextdisk
-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 ...
-2
votes
2answers
644 views
playing with minix3 source code
I want to edit source coe of minix3 and then i want to see the changes in effect.Means i want to see the result of changes which i make.If i use minix3 vmwar images how can i edit its source.
Does ...