An operating System (OS) is a basic software whose rule is to intermediate software requisitions for resources and the hardware available, manage input/output, memory allocation/deallocation, file systems, among other basic tasks a device (not necessarily a computer) should do.
273
votes
23answers
56k views
What are some resources for getting started in operating system development?
One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).
I'm having a ...
149
votes
4answers
71k views
What is private bytes, virtual bytes, working set?
I am using perfmon windows utility to debug memory leak in a process.
Perfmon explaination:
Working Set- Working Set is the current size, in bytes, of the Working Set of this process. The Working ...
35
votes
16answers
11k views
How do you write a basic operating system?
Let me know how I can create a basic operating system.
What books do you recommend?
30
votes
8answers
17k views
Detect 64-bit or 32-bit Windows from User Agent or Javascript?
I want to offer the right version of a download. The versions I have are:
32-bit Windows
64-bit Windows
Linux
Detecting Linux using the User Agent field is easy; but is it possible to reliably ...
135
votes
21answers
128k views
Difference between binary semaphore and mutex
Is there any difference between binary semaphore and mutex or they are essentialy same?
33
votes
7answers
24k views
Spinlock versus Semaphore
What is the basic differences between Semaphores & Spinlock? & In what best situations or conditions, we can use these.
27
votes
11answers
31k views
Are there any macros to determine if my code is being compiled to Windows?
I would like to detect whether the OS I'm compiling on is Windows. Is there a simple macro I can check to verify that?
13
votes
4answers
10k views
stdout thread-safe in C on Linux?
Is writing to stdout using printf thread-safe on Linux? What about using the lower-level write command?
14
votes
7answers
8k views
How can I return system information in Python?
Using Python, how can information such as CPU usage, memory usage (free, used, etc), process count, etc be returned in a generic manner so that the same code can be run on Linux, Windows, BSD, etc?
...
4
votes
3answers
3k views
How many hardware details can a Java Applet Discover?
I'm writing a Java applet to run differently under different hardware. For instance if I know a computer has a large amount of RAM but a weak processor, I can alter the balance of some time-memory ...
36
votes
22answers
9k views
How are Operating Systems “Made”?
Creating an OS seems like a massive project. How would anyone even get started?
For example, when I pop Ubuntu into my drive, how can my computer just run it?
(This, I guess, is what I'd really ...
12
votes
4answers
11k views
jQuery/Javascript to detect OS without a plugin?
I am looking for a way to detect the OS for a downloads page using jQuery or Javascript to recommend specific files for Mac vs Windows. I was hoping to do it without adding another plugin to my page.
...
5
votes
4answers
4k views
Get OS Version / Friendly Name in C#
I am currently working on a C# project. I want to collect users statistics to better develop the software. I am using the Environment.OS feature of C# but its only showing the OS name as something ...
16
votes
3answers
5k views
ExitCodes bigger than 255, possible?
If yes, on which operating system, shell or whatever?
Consider the following java program (I'm using java just as an example, any language would be good for this question, which is more about ...
109
votes
4answers
6k views
What happens when a computer program runs?
I know the general theory but I can't fit in the details.
I know that a program resides in the secondary memory of a computer. Once the program begins execution it is entirely copied to the RAM. Then ...
61
votes
6answers
21k views
Programmatically get the cache line size?
Just want to document the answer to this specific question... a similar question (with potential answers was asked here)
All platforms welcome, please specify the platform for your answer.
54
votes
10answers
19k views
Process vs Thread
Recently I have been asked question in the interview whats the difference between process and thread. Really I did not know answer. I thought for a minute and gave very weird answer.
Threads share ...
49
votes
10answers
18k views
21
votes
15answers
71k views
How to do I check CPU and Memory Usage in Java?
I need to check CPU and memory usage for the server in java, anyone know how it could be done?
17
votes
3answers
15k views
user thread and kernel thread
is there a relationship between kernel/user thread?
some OS textbook said that "maps one(many) user thread to one(many) kernel thread",what does map means here?
11
votes
8answers
4k views
Which operating systems come with .net?
I'm trying to evaluate .net as an implementation platform for my next software project.
Which operating system releases come with a .net runtime pre-installed? And which come with it as an add on ...
11
votes
6answers
9k views
maximum memory which malloc can allocate
I was trying to figure out how much memory I can malloc to maximum extent on my machine
(1 Gb RAM 160 Gb HD Windows platform).
I read that the maximum memory malloc can allocate is limited to ...
14
votes
5answers
2k views
How can I find which operating system my Ruby program is running on?
I want my Ruby program to do different things on a Mac than on Windows. How can I find out on which system my program is running?
7
votes
7answers
586 views
Why an executable program for a specific CPU does not work on Linux and Windows?
An executable problem like exe does not work on Linux (without wine). When compiling source code compiler produce object code which is specific to a particular cpu architecture. But same application ...
7
votes
5answers
5k views
Determine Process Info Programmatically in Darwin/OSX
I have a class with the following member functions:
/// caller pid
virtual pid_t Pid() const = 0;
/// physical memory size in KB
virtual uint64_t Size() const = 0;
/// resident memory for this ...
10
votes
3answers
6k views
How do I disable a system device?
Is there any way to disable a system device from C#.NET.
Basically emulating when you go to Device Manager and disable a device that way?
I am assuming there is a WinAPI function that I can invoke, ...
40
votes
9answers
5k views
What is Application Binary Interface (ABI)?
I never clearly understood what is an ABI. I'm sorry for such a lengthy question. I just want to clearly understand things. Please don't point me to wiki article, If could understand it, I wouldn't be ...
29
votes
12answers
11k views
Why is the linux kernel not implemented in C++? [closed]
Why is C as programming language still so prominent when it comes to OS programming? Shouldn't C++ have replaced it a long time ago as its successor?
30
votes
12answers
32k views
What Languages are Windows, Mac OS X and Linux written in?
I was just wondering who knows what programming languages Windows, Mac OS X and Linux are made up from and what languages are used for each part of the OS (ie: Kernel, plug-in architecture, GUI ...
11
votes
10answers
3k views
How to discover what Linux distribution is in use
Sometimes I need to access some servers running Linux (or maybe another Unix-like SO), but I don't know how to verify which distribution is in use on the server (there are times that even the ...
23
votes
8answers
4k views
What is the difference between a stack overflow and buffer overflow?
What is different between stack overflow and buffer overflow in Programming ?
9
votes
3answers
4k views
How do interrupts in multicore/multicpu machines work?
I recently started diving into low level OS programming. I am (very slowly) currently working through two older books, XINU and Build Your Own 32 Bit OS, as well as some resources suggested by the ...
12
votes
11answers
6k views
Is it possible to code a device driver in Java?
Introduction
I heard something about writing device drivers in Java (heard as in "with my ears", not from the internet) and was wondering... I always thought device drivers operated on an operating ...
8
votes
3answers
4k views
more info on Memory layout of an executable program (process)
I attended interview for samsung. They asked lot of questions on memory layout of the program. I barely know anything about this.
I googled it "Memory layout of an executable program". "Memory ...
14
votes
6answers
10k views
How is the system call in Linux implemented?
When I invoke a system call in user mode,how did the call get processed in OS?
Does it invoke some some executable binary or some standard library?
If yes,what kind of thing it needs to complete the ...
8
votes
2answers
2k views
Understanding Ruby and OS I/O buffering
How does IO buffering work in Ruby? How often is data flushed to the underlying stream when using the IO and File classes? How does this compare to OS buffering? What needs to be done to guarantee ...
4
votes
6answers
6k views
System() calls in C++ and their roles in programming
I've often heard that using system("PAUSE") is bad practice and to use std::cin.get() instead. Now my understanding of system calls is that they take a string which they enter into a system command ...
7
votes
4answers
5k views
CPU Switches from User mode to Kernel Mode : What exactly does it do? How does it makes this transition?
CPU Switches from User mode to Kernel Mode : What exactly does it do? How does it makes this transition?
EDIT:
Even if it is architecture dependent please provide me with an answer. The architecture ...
1
vote
1answer
2k views
condition variable
What are the principles of a condition variable in synchronization of the processes of operating systems?
6
votes
3answers
12k views
How to set mobile system time and date in android?
When you want to change the mobile system date or time in your application, how do you go about doing it?
2
votes
2answers
2k views
User agent, extract OS and browser from string [PHP]
I'd like to extract full OS name AND BROWSER from the User Agent String?
Any suggestions?
Thanks
1
vote
2answers
4k views
Get OS in c++ win32 for all versions of win?
How to get the OS version for all windows, at least the name for win95,98,me,xp,vista,7?
Im using visual c++ 2010 and I want to include this feature in a pure win32 app.
59
votes
4answers
11k views
Why is Linux called a monolithic kernel?
I read that Linux is a monolithic kernel. Does monolithic kernel mean compiling and linking the complete kernel code into an executable?
If Linux is able to support modules, why not break all the ...
27
votes
14answers
5k views
How should I go about doing operating system development for the X86 architecture?
I want to make my own operating system for the X86 architecture.
What would be the best language to use? (Along with assem of course)
What would the best compiler for the language be on a windows ...
24
votes
16answers
3k views
If I were to build a new operating system, what kind of features would it have? [closed]
I am toying with the idea of creating an completely new operating system and would like to hear what everyone on this forums take is on that? First is it too late are the big boys so entrenched in ...
16
votes
8answers
8k views
Linux Programming Book [closed]
I'm looking for a good book on Linux system programming and wondered whether anybody could recommend an up-to-date appropriate book that covers the subject well. Things like:
I/O and fileystems
...
18
votes
5answers
14k views
kernel space vs user space
what is the difference between the kernel space and the user space . Do kernel space ,kernel threads,kernel processes , kernel stack mean the same thing . Also why do we need this differentiation.
16
votes
14answers
2k views
For kernel/OS is C still it?
I like operating systems and would eventually like to become a OS developer mostly working on kernels. In the future will C still be the language of choice and what else should I be trying to learn?
11
votes
1answer
4k views
I/O concept flush vs sync
I have come across these two terms and my understanding of them seem to overlap with each other. Flush is used with buffers and sync is used to talk about persisting changes of file to disk.
In C , ...
24
votes
4answers
19k views
How to copy a directory and its contents to an existing location using Python?
I'm trying to copy a directory and all its contents to a path that already exists. The problem is, between the os module and the shutil module, there doesn't seem to be a way to do this. the ...


