0
votes
1answer
14 views

the only overhead incurred by fork is page table duplication and process id creation

The only overhead incurred by fork() is the duplication of the parent’s page tables and the creation of a unique process descriptor for the child. In Linux, fork() is implemented through the use of ...
2
votes
0answers
26 views

Development environment/process for systems (OS) programming? [closed]

What is a typical development environment/process used for operating systems programming. I am currently taking an OS course through my university where we are playing around in the MINIX OS (e.g. ...
0
votes
0answers
55 views

APIs for netlink socket creation in user space

I am trying to make a simple VFS. VFS in user space which communicates with kernel module and redirects any function call to the user space and the user space will process the function. I have read ...
0
votes
0answers
45 views

Making use of Makefiles in OS development

I'm currently working on bulding a simple OS from scratch and i'm follwoing a tutorial guide. as the tutorial advances to the point where you combine the boot_sector code with the kernel code to boot ...
0
votes
0answers
76 views

How to add custom build rule in cmake?

I have a kernel source with me and now adding support for cmake as my kernel builder. Right now I am stuck at one place. I have a assembly file written in NASM and included some c header files in it. ...
0
votes
2answers
21 views

On a trap, where's the program state stored [closed]

When a program triggers a trap, where is the program's state stored ? kernel stack or user stack ? If it's the user stack, is there a security risk present when the user stack points to some bad ...
0
votes
1answer
44 views

Armv6 Assembler for Mac

I am following this tutorial on operating system development for the raspberry pi. http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/ok01.html I am using a Mac, so it suggests using the ...
2
votes
3answers
69 views

Pushing code towards kernel or user space, for performance reasons?

Originally I thought to make code faster it would be better to try and reduce the transition between Kernel and user space- by pushing more of the code to run in the kernel. However, I have read in a ...
1
vote
3answers
232 views

Kernel bypass for UDP and TCP on Linux- what does it involve? [closed]

(This question is focussed towards bypassing the kernel for receiving/sending TCP and UDP packets- identical to the techniques which companies like solarflare provide) I think this question could be ...
0
votes
1answer
126 views

Questions about copying data into/from Linux Kernel

I am finishing up project for OS class and can't figure several things that have to do with SAFELY copying data from user-space into kernel and back from kernel into user space, and how to properly ...
1
vote
1answer
69 views

Explanation of state replication of barrelfish

Can you tell how the Barrelfish OS is implementing the state replication of its kernel on each each core or closely-coupled "shared" on cores in case e have a multi or many cores chip. As I am trying ...
-1
votes
1answer
97 views

Custom Kernel: Implement filesystem

As a out of course project, I am currently developing a kernel in an attempt to better understand all the aspects of an actual OS. So far, I am done setting up a flat physical memory model with ...
7
votes
1answer
384 views

Android: Create new System Permission in through AOSP source code.

I was wondering how one can edit Android OS source code to impose a new permission. For example like we have BLUETOOTH permission, if the device offers a new sensor, then how appropriate permission ...
0
votes
2answers
96 views

Why do we need drivers when we have a kernel?

I'm currently doing a course about Operating Systems. I understand that a kernel is a core part of an operating system that acts as a bridge between user applications and the data processing elements ...
0
votes
2answers
90 views

Error in C: array type has incomplete element type

I am working on a project that modifies part of the Android OS, and when I tried to implement a new system call to return the status of all the processes, I encountered the following error: ...
5
votes
4answers
227 views

where is hardware timer interrupt?

this is Exceptions and Interrupts table(which I understand as IDT) from the "Intel Architecture Software Developer Manual" where is Timer interrupt which makes context switching possible?? (for ...
0
votes
0answers
63 views

Thread waiting for lock held by unusual another thread

One of the application thread is trying to take a lock on a connection object. However, it is showing that the lock is held up by another thread, which surprisingly has nothing to do with my ...
9
votes
1answer
244 views

Why processes are deprived of CPU for TOO long while busy looping in Linux kernel?

At first glance, my question might look bit trivial. Please bear with me and read completely. I have identified a busy loop in my Linux kernel module. Due to this, other processes (e.g. sshd) are not ...
2
votes
2answers
112 views

How to access the Internet only via BIOS?

I'm writing a mini OS just for fun. I want to save some key information to one securiry server on the Internet and ever fetch it BEFORE booting my OS. So my problem is: How to access the Internet ...
3
votes
2answers
170 views

Why do we need separate kernel stack for each CPU [closed]

In practice, many operating systems are designed to have one kernel stack for each thread, or at least one for each CPU. But for an operating system that the kernel is locked every time a process ...
2
votes
3answers
350 views

How to determine whether a linux kernel is 32bit or 64bit from a running kernel module

Here is the deal. I want to write a kernel module which depends on the kernel type (32 or 64 bit). There are some lines of code which I want to be included in the module if and only if the kernel is ...
2
votes
1answer
515 views

Writing character device driver, ioctl() vs normal read/write?

I've been toying with writing a character device module for the linux kernel and I came to a bit of a confusing stop. I see online there is talk of using ioctl() to transfer commands/data from user ...
1
vote
2answers
152 views

Writing a basic java shell or GUI on a kernel

As a hobby I have been writing a shell in java. It's very basic, it include the creation, deletion, reading of files through a command line or through a desktop-like environment if a plugin is ...
1
vote
2answers
55 views

How to determine whether a memory address is free in OS?

Suppose i create a function pointer in kernel(similar to interrupt service routine and maintaining the address of the function in the interrupt vector table) and start compiling and linking,then ...
0
votes
3answers
220 views

Stack for iret and int instruction

An interrupt causes the CPU to save the EFLAGS, CS and IP registers onto the "stack" and the iret instruction pops them off it. Where is this stack located? How does the CPU know about it (I assume ...
2
votes
3answers
653 views

why is kernel mapped to the same address space as processes

This is a question to elaborate on this one: Why is kernel said to be in process address space? This might be a silly question but it just popped up in my mind. All the text about process ...
1
vote
1answer
194 views

Kernel Code vs User Code

Here's a passage from the book When executing kernel code, the system is in kernel-space execut- ing in kernel mode.When running a regular process, the system is in user-space executing in ...
0
votes
4answers
196 views

Why doesn't BIOS load the Linux Kernel directly - why the MBR and all that trouble?

I've recently learned about the boot process for Linux. I can't help but wonder why we go through the trouble of acccessing the MBR after BIOS so that instructions there can, in turn, load the kernel ...
5
votes
6answers
563 views

Kernel development and C++

From what I know, even though the common OS have parts written in other languages, the kernel is entirely written in C. I want to know if it's feasible to write a Kernel in C++ and if not, what would ...
1
vote
2answers
124 views

In need of very small open-source kernels [closed]

I need a very tiny open-source kernel(the tiniest you know) with at least a console i/o with/without GUI that I could compile into object code and load it into RAM using a simple bootloader(that I ...
0
votes
1answer
378 views

How can the linux bottom halfs execute in interrupt context?

While understanding the concepts of top halves and bottom halves, I came across with a question. Here is my understanding: Top half and Bottom half executes in interrupt context. The only ...
0
votes
1answer
109 views

how does the processor know an instruction is making a system call

system call -- It is an instruction that generates an interrupt that causes OS to gain control of processor. so if a running process issue a system call (e.g. create/terminate/read/write etc), a ...
-1
votes
6answers
821 views

low cost Linux development board for kernel development [closed]

I want build custom Linux kernel with shell. I am very poor in hardware module. Is there any Chinese board who offer custom development? I don't find any low cost Linux board or android boards. If I ...
0
votes
3answers
2k views

What is the difference between Shell, Kernel and API

I want to understand how this applies to an operating system and also to those things that are not infact operating systems. I can't understand the difference between the three and their essence. API ...
0
votes
3answers
127 views

Force windows onto one CPU, and then take over the rest

I've seen various RTOSes that have this strategy that they have windows boot on one or more CPUs and then run realtime programs on the rest of the CPUs. Any idea how this might be accomplished? Can I ...
2
votes
1answer
317 views

Linux kernel books for 3.x

I went through many links on stack overflow regarding linux kernel books. I found that "Linux kernel development, 3rd edition (v2.6)" and "Understanding the Linux Kernel, Third Edition" are the most ...
0
votes
2answers
147 views

Is kernel a special program that executes always? and why are these CPU modes?

I am new to this OS stuff. Since the kernel controls the execution of all other programs and the resources they need, I think it should also be executed by the CPU. If so, where does it gets executed? ...
7
votes
2answers
163 views

What are these extra bytes in my binary file?

I am in the process of writing a small operating system in C. I have written a bootloader and I'm now trying to get a simple C file (the "kernel") to compile with gcc: int main(void) { return 0; } ...
-1
votes
1answer
289 views

OS development. How to start? [closed]

I am java developer. I always wanted to write my own kernel and develop an small os, I don't know what this kernel or os will look like or what they will do but I have a passion develop something ...
1
vote
1answer
490 views

Error syscall : Function not implemented

I'm trying to add new (dummy) system call to linux kernel. 1) I added the system call code under linux-source/kernel/myfile.c and updated the Makefile accordingly. 2) Updated syscall.h, unistd.h ...
1
vote
1answer
166 views

Building modules with linux kernel for custom flavor

I followed the instructions given in the link: http://blog.avirtualhome.com/how-to-compile-a-new-ubuntu-11-04-natty-kernel/ for building a custom kernel and booting it. Everything works fine, except ...
0
votes
1answer
64 views

What are some good books to understand what the OS is doing real time? [closed]

I constantly keep getting questions as to what my computer is doing: Is it executing no-ops? Does scheduler has a no-op program that it runs when it has nothing to schedule? What is exactly a ...
0
votes
3answers
132 views

The implementation of read: Is copying memory to kernel space firstly better than user space directly?

When a process is blocked after the calling of "read", the kernel reads data from ios and coping it to the buffer, but where is the buffer, in the kernel or in the user space(which is the parameter of ...
0
votes
0answers
35 views

File system with chained clusters

I'm trying to create school file system with partitions on disks, every partition has its cluster for her representation. typedef unsigned long ClusterNo; const unsigned long ClusterSize = 2048; int ...
0
votes
0answers
119 views

Is there something wrong with my implementation of “fork” system call? [closed]

In my implementation of "fork", data is copied from parent's space to child's.With the page enabled(page enabled in cr0 register is set), I insert a fake page to parent's page, and set it an empty ...
1
vote
1answer
148 views

My kernel runs normally in qemu,but double fault in bochs

My kernel crashes when it executes the first page fault executes. And my page fault handler looks like this: asm_page_error_wrapper: PUSHA movl %esp, %esi pushl 48(%esi)/*esp,pusha has ...
1
vote
3answers
100 views

How does a kernel return from the thread

I am doing some study hardcore study on computers etc. so I can get started on my own mini Hello World OS. I was looking a how kernels work and I was wondering how the kernel makes the current thread ...
1
vote
2answers
207 views

How to keep atomicity when contex switching in the kernel mode?

There is no doubt that context switching in kernel mode, which is trapped in by hardware interrupt or software interrupt. It is also known that context switching should be kept in atomic, but how do ...
0
votes
1answer
71 views

How could one interrupt handler go until the same source is free?

Note that a single interrupt source (timer, keyboard, etc.) will not signal a new interrupt to the processor until the processor has indicated that handling of the previous interrupt from that ...
2
votes
5answers
2k views

PIC Microcontroller Operating System

I heard it is possible to write an Operating System, using the built in bootloader and a kernel that you write, for the PIC microcontroller. I also heard it has to be a RTOS. Is this true? Can you ...

1 2 3 4