is a Unix-like computer operating system based on a microkernel architecture created by Andrew S. Tanenbaum for educational purposes.

learn more… | top users | synonyms

0
votes
0answers
17 views

Function missing from proc.c in minix 3

I installed minix 3 on vmware player and i'm trying to find a function which as i read is in /usr/src/kernel in file "proc.c". The function is called sched(). It should be between this 2 functions: ...
0
votes
1answer
31 views

Trying compiling in minix3

I'm using minix3 on VMware Player and i'm having trouble compiling a system call. I actually tried to see if i can add a simple command in a system call just to see that working and i put a simple ...
-2
votes
1answer
37 views

In terminal driver keyboard.c of minix3, why does the ibuf exist? [closed]

《Operating systems design and oragnization》3rd, page 351. The keyboard interrupt service routine is kbd_interrupt (line 15335), called whenever a key is pressed or released. It calls scode to get the ...
0
votes
1answer
27 views

What is the difference b/w Hurd and Minix

knowing both are micro-kernels, what is the difference b/w Mach(which Hurd based on, as I read) and Minix. are there any architectural difference. a little light over "what is L4" wud be very ...
0
votes
0answers
43 views

Calling minix _syscall() from within a function

I have been running into a very strange problem in minix lately with regards to a system call I wrote. Basically the code runs fine from within a main() function, and the call does what it should. ...
0
votes
0answers
28 views

minix don't know how to make proc.h

I want to ask why do I get the comment: don't know how to make proc.h while trying to compile the new minix kernel. I am working on new scheduling algorithm. The only thing I have done in proc.h where ...
0
votes
0answers
21 views

Minix network conf

Does anyone know how to make network work on Minix 3 under OS X? I ran netconf and chosed automatically using DHCP, but when I type in host www.google.com it returns "Host not found. try again."
0
votes
1answer
128 views

C - Unable to get shmget/shmat to compile

I'm pulling out my hair trying to figure out why this isn't working on my Minix system. When I try to compile my C program, I get the following error: #make link pm/pm program.o: In ...
0
votes
1answer
64 views

How to wait inside a system call in Minix 3

I need to implement a system call inside minix that waits until some condition is true before it returns. However, I am finding that simply trying something like while (var != desired_value) { ...
0
votes
1answer
24 views

VirtualBox Minix3 panic

Have googled, search reports, that such error could be if virtualization is disabled on PC. I've checked in BIOS config, it's enabled. My CPU is Core i3.
1
vote
0answers
33 views

MINIX 3.2 - add queues [duplicate]

Could anyone explain why when I change the number of queues in Minix 3.2 /include/minix/config.h I can not boot, while before we could change the same when these values used to be in proc.h ? how to ...
0
votes
0answers
34 views

Changing total number of queues in version 3.2, can not boot and fail to make clean/install

Could anyone explain why when I change the number of queues, MAX_USER_Q, USER_Q in Minix 3.2 in the file /include/minix/config.h I can not boot and the system does not accept that, while before we ...
1
vote
1answer
64 views

Python C extensions on MINIX

I was trying to build this package I wrote (which I know to be working), first in the usual way through distutils: # python2.7 setup.py build running build running build_py running build_ext building ...
-4
votes
4answers
126 views

how to execute c file in minix operating system [closed]

Could someone explain to me what is a.out and how it works? This is the first time I am using Unix (minix). I have one folder with two files filename.c and test.sh (containing three lines starting ...
0
votes
1answer
165 views

Minix - System call not correctly calling function?

I need to create a system call in Minix for a homework assignment. I've gotten most of the set up finished, but for some reason the function that the system call is actually calling isn't being found ...
0
votes
0answers
45 views

MINIX 3 boot problems

I am trying to install MINIX 3.2.0, and I have a boot CD, made with FreeISOBurner (it has worked in the past). I boot into the CD, and I get an error message when it tries to fond the boot CD: Not ...
0
votes
1answer
68 views

Minix write to the file from /kernel/system

I need to write some information to my special log file (for example, /home/log.txt) from kernel/system/do_kill.c (Minix). I already tried: int filedesc; filedesc=open("/home/log.txt", O_CREAT | ...
0
votes
0answers
54 views

Adding another boot choice in minix

After some time spent on search, I've found that Minix3.2 use NetBSD bootloader. I have a task to add another option after 3 that already exists witch would start a game (snake for example). I found ...
1
vote
1answer
42 views

How to get the process name from server layer using PID

I would like to be able to use the name of the process in servers/sched/schedule.c however schedproc structure doesn't contain the name variable. I thought about using endpoint_lookup() function to ...
5
votes
1answer
122 views

How do you free a parent memory in an EXEC call in Minix?

In an EXEC call, I am looking to allow bigger "child process" by making memory through deleting Parent processes's memory. I am using MINIX 3.2 and am planning to modify exec.c to call a modified ...
0
votes
1answer
116 views

Porting JVM to MINIX

As you may see from the title, for some reason I need to make running .class files on Minix possible (a compiler is not necessary). So could somebody point me in any direction, suggest some ...
1
vote
0answers
66 views

Count system calls for processes in Minix 3 and print processes/#of sys calls with F8

I need a way to count how many system calls every process uses (user, system, etc) and then print the results for all processes with F8. I'm guessing that I need to change proc.c and proc.h to add a ...
2
votes
5answers
163 views

Does Fork() in UNIX create processes which run in unison or sequentially?

When using a fork() function in a program which is running in a Unix like operating system (i.e MINIX 3) does it create a number of separate processes which are handled independently and can therefore ...
2
votes
0answers
87 views

Need “ls -s” to show correct number of blocks in MINIX

I'm taking a course in OS involving minix and I would like some advice. I'm trying to figure out how to modify the minix so that it's ls -s will do the same thing as in linux. I understand that ...
0
votes
0answers
103 views

Minix - Creating a stack trace in C

This is using Minix (http://www.minix3.org). For a project for Uni, I am creating a stacktrace using an fkey. I have access to the process table and I am printing the Process Counter, the Stack ...
0
votes
0answers
107 views

Having trouble understanding exec() and parent / child processes

I have a program I am making that needs execl() in linking two separate .c files, the first 'interface.c' asks users if they want to add, change, or list a set of bank accounts. the 2nd 'db.c' will be ...
0
votes
0answers
90 views

Minix3 read only issue

I would just like to know is there a way you can overwrite the main.c file in the kernel folder (dir /usr/src/kernel/main.c) in MINIX 3. I want to change some code in the file (I know the risks ...
0
votes
0answers
35 views

s_call written in mpx386.s

I have several questions in regard to _s_call written in mpx386.s. sub esp, 6*4 ! skip RETADR, eax, ecx, edx, ebx, est how come the RETADR and the general registers eax, ecx, edx, ebx, ...
1
vote
1answer
61 views

instructions found in _sendrec.s

I stumbled upon on the following instructions found in src/lib/i386/rts/_sendrec.s At the very beginning, the following statements are written out. SEND = 1 RECEIVE = 2 BOTH = 3 SYSVEC = 33 ...
0
votes
1answer
86 views

SYSTEM: denied request 44 in Minix

I get "SYSTEM: denied request 44 from 109894" when trying to execute my own code in Minix 3.2. I typed over the code and the makefile so there could be some typos. The program compiles fine however. ...
0
votes
1answer
75 views

GCC Linker error presumably

I am getting the following error: I am following this tutorial: http://wiki.minix3.org/en/DevelopersGuide/DriverProgramming This is my makefile: My code is on pastebin: ...
1
vote
0answers
41 views

Minix kernel process yield (how to invoke a software interrupt)

I am trying to find code in Minix source that kernel processes can call to yield, causing software interrupt and subsequent task switch.
1
vote
1answer
177 views

Minix print from kernel to console

I am trying to change the scheduling in Minix and want to print from /kernel/proc.c to standard output. Printf cannot be used inside kernel. I am using Minix 3.1.2. I want to add code to sched() ...
0
votes
1answer
114 views

Minix version of source code

Does anyone know what Version of Minix source code this is? Minix source code I've been modifying the kernel based on this source and I need to recompile Minix but I don't know what version to run. ...
2
votes
2answers
251 views

Minix3 process table (proc.h)

Anyone know why certain fields in proc.h in Minix are char, when I thought they'd be int? 37 char p_ticks_left; /* number of scheduling ticks left */ 38 char p_quantum_size; ...
14
votes
1answer
567 views

Is there any documentation about how Minix 3.2 (latest) boot?

I found this site: http://www.os-forum.com/minix/boot/ which claims to document the boot sequence of Minix. But in the source tree of Minix 3.2 I just get from Git, the files described in the above ...
0
votes
1answer
244 views

Sending message from Driver to TTY in MINIX 3.2

I'm trying to read input from the user and in the case the g is pressed I output "Done" while when any other button is pressed the terminal works normally. What I have now is that it does print done ...
0
votes
1answer
298 views

How do I make a C program executable on the command line in Minix 3?

I need to make a program, ioloop.c, which takes two command line parameters that determine the number of iterations of two nested for loops. The inner loop performs a more time-consuming function, ...
2
votes
1answer
3k views

Does anyone know where to get the Minix kernel source code?

I see a lot of places where I can get the xxx MEG minix source code.. My question though is how does 12k lines of code come up to even one meg of code? Unless the lines are really really long :) Does ...
0
votes
1answer
702 views

How to customize proc.c in minix for implementing FCFS algorithm?

I want to customize the code of minix file /usr/src/kernel/proc.c for implementing the FCFS algorithm but I am not getting any idea or clue. I have been said that, the current algorithm works with ...
2
votes
0answers
219 views

X Server in Minix, can't install from PKGIN

I have successfully installed Minix3 on my VBox && also have installed many features like gcc, clang etc... But I've got the problem with installing X-Server on my Minix. It didn't even ...
6
votes
1answer
291 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> ...
2
votes
0answers
76 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
87 views

Minix Internal Fragmentation [duplicate]

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 ...
0
votes
2answers
387 views

MINIX Internal Fragmentation 2

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 researching this ...
5
votes
5answers
1k 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
1answer
178 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*/ ...
0
votes
1answer
187 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 make ...
1
vote
1answer
140 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 ...
0
votes
1answer
490 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 ...

1 2