0
votes
1answer
12 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 ...
1
vote
1answer
43 views

How to tell if process is responding in Python on Windows

I am writing a python script to keep a buggy program open and I need to figure out if the program is not respoding and close it on windows. I can't quite figure out how to do this.
0
votes
1answer
30 views

Why they always use while(true) loop for the process in process synchronization chapter?

I am reading the textbook Operating Systems Concepts by Abraham Silberschatz et al. I found that whey almost use while(TRUE) loop for all the processes that need to be synchronized in the the chapter ...
1
vote
4answers
61 views

Heap memory clearance when application closes abruptly

As we know the heap is used for dynamic allocation of memory for an application. How is the heap memory cleared(and hence avoiding memory leaks) in case of abnormal application termination? Consider ...
1
vote
0answers
63 views

Process Control Block -Linux

Is this possible to retrieve the details of a process control block like the values stored in the registers and status of the process,pid and so on. If yes then please tell me how to do that. Thanks ...
0
votes
0answers
26 views

Round-robin process scheduling with IO

I am not sure about one thing and I want to clarify to be sure. I have three processes P1 , P2 , and P3. P1 starts first and the other two wait, when P1 is finishing its IO state at the same time the ...
1
vote
2answers
174 views

Difference between user-level and kernel-supported threads?

I've been looking through a few notes based on this topic, and although I have an understanding of threads in general, i'm not really to sure about the user-level and kernel-level threads. I know ...
0
votes
0answers
14 views

Producer consumer modified

From the modification of previous producer consumer problem. I want to make sure that the very last message by producer must reach to consumer. and also in general the message created first should ...
-3
votes
1answer
43 views

how processes work in operating systems and in the cpu [closed]

i read about process scheduling. i understood that when a procces is created there is a procces control block created for it but i didn't understand entirly how it works. when the PCB is created where ...
1
vote
1answer
86 views

Shell script process is getting killed automatically

I am facing problem with shell script i have ascript which will be running in infinite loop so say its havin PID X.The process is running for 4-5 hours but automatically the process getting ...
1
vote
1answer
44 views

How to designate a Process/Thread to a certain core in a multi-core environment?

I mean, in the implementation of an OS, what mechanism can do this job? e.g., in the Linux kernel? Or, as we all know there are tools by which we can achieve this conveniently, like the Windows Task ...
2
votes
1answer
99 views

Determine if a process has suspended

I try to send a SIGTSTP signal to a particular process, but how to determine if the process has actually suspended using C library functions or syscalls in Linux?
0
votes
1answer
109 views

Mutual Exclusion(Peterson's Algorithm)

I am looking at Peterson's Algorithm(mutual exclusion for 2 processes) My question is what if no processes has entered a critical section yet and P0 wants to enter a critical section for the first ...
0
votes
1answer
62 views

Exact Code segment size for a windows process

The linux file proc/{pid}/status as we know gives us some fine grain memory footprint for a particular process. One of the parameters thrown by it is the 'VmExe' or the size of the text segment of the ...
0
votes
1answer
25 views

Unclear about process state of a multi-threaded process

In a multi-threaded system, is it possible to have one thread of a process to wait on I/O and other thread of the same process to do some other work related to the process? If it is possible, what ...
1
vote
1answer
66 views

What is meant by dividing a process into pages in the concrete sense? [closed]

The way I understand the notion of a 'process' is that it is a running instance of an executable program.The exe is in the secondary memory and the running instance of it is in the RAM. If this ...
0
votes
0answers
49 views

Confusion regarding process scheduling (operating system )

I am confused by the following section of a book. Here we taking about FCFS Scheduling. I feel that calculation table is incorrect in the book. Because at time 7 P3 got completed, it's turnaround time ...
0
votes
1answer
87 views

How many threads are created for an application or a process or a program in windows or linux?

Say I am running a simple C program. How to know which thread is executing this program? Or Is there any way so that I am sure that my program is translated into a process and this process is again ...
0
votes
1answer
34 views

Obtaining Process Details

In general is there any way to get the details of the process (the process to which my program is translated to by the OS before execution). Is it possible to output the contents of the data ...
1
vote
1answer
28 views

Background Processes in an Operating System

Its a general question , though I searched about it but couldn't match to an exact satisfactory answer ! An os runs many processes at a time and for switching of a process it uses the concept of time ...
0
votes
1answer
32 views

VMWare Virtualized Applications and its Running Process instructions Tracing

I'm exploring on VMWare Virtualization Concept, and looking mainly on below two: 1) Is it possible to trace out instructions from a process running in Guest OS? if so a) How to trace, in ...
-2
votes
1answer
54 views

Python - Processes and deadlocks

I'm currently helping my brother in his O.S. course. I never took this course before, but I have worked before in processes and threads on a Debian OS. Now the main questions in his exercises are the ...
-4
votes
1answer
67 views

What is the difference between PID (process identifier) and some handle used in WinApi? [closed]

I've known that the pid is the process identifier (just to distinguish from the other processes, consisting of a 32-bit integer, existing on the PCB (which exist on the kernel memory)) and the handle ...
2
votes
2answers
170 views

How can I measure the aproximation of the time spent in a process context switch?

Is there any possibility to measure the approximated time of a process context switch in C#? If yes, how? I made this question based on the book Cracking the Coding Interview: 150 Programming ...
0
votes
0answers
447 views

round robin CPU scheduling with I/O (vs) virtual round robin CPU scheduling with I/O

I have been studying a lot of theory about round robin and virtual round robin scheduling but I can not visualize how the actual scheduling is done. I have designed a problem involving all the ...
3
votes
3answers
494 views

How to solve this fork() example in c

int x=0; int main() { for(i=0;i<2;i++) { fork(); x=x+5; } return 0; } I am a newbie to the fork() concept. Is the above tree (with x values) a correct solution for the C code ...
0
votes
2answers
503 views

Semaphore wait() and signal()

I am going through process synchronization, and facing difficulty in understanding semaphore. So here is my doubt: the source says that " Semaphore S is an integer variable that is accessed through ...
0
votes
0answers
289 views

difference between process-image and process controll block [closed]

i am trying to understand the difference between the process-image and a process controll block(pcb). what i know is this: process-image: process-image, which also contains process-context, is ...
0
votes
2answers
271 views

Process synchronization

Factors designating a piece of code as critical section As of I understand, process synchronization is employed using kernel data structures such as semaphores, to prevent concurrent access to the ...
0
votes
3answers
121 views

Is there a limit on process input stream when using java?

I am creating a process using java runtime on a solaris OS. I then get inputstream from the process and do a read on the input stream. I expect (I am not too sure about the process, it is a 3rd party ...
0
votes
1answer
123 views

Memory Allocation to processes

I read the following lines regarding memory allocation to processes: One of the important considerations in main memory management is: how should an OS allocate a chunk of main memory required by ...
0
votes
1answer
163 views

how to check if a process in uninterruptable on Solaris

which ps option on Solaris 11g gives information if a process is in uninterruptable sleep mode? admin@starsut:/tmp$ ps -aef | grep java UID PID PPID C STIME TTY TIME CMD oracle 1465 ...
0
votes
3answers
345 views

Difference between software interrupt routine and user mode function

Well, my question is in the title As we know, an exception handler routine is responsible for switching user mode into kernel mode This involves certain assembly instructions And this is claimed to ...
0
votes
2answers
92 views

Threads and Processes

I am trying to revise my Operating System concepts, but I had some confusions. I know that a process is a thread with its own address space. 1) Are deadlocks only caused by threads or processes? ...
1
vote
0answers
111 views

Stack size difference for Thread and Process

I have recently observed in Java (while implementing a deep recursive function call), that the stack size for thread is more than the process. With this I mean, E.g. The thread could execute approx ...
2
votes
5answers
236 views

How does Windows give 4GB address space each to multiple processes when the total memory it can access is also limited to 4GB

How does Windows give 4GB address space each to multiple processes when the total memory it can access is also limited to 4GB. The solution of above question i found in Windows Memory ...
0
votes
1answer
58 views

Why address space need to be preserved when Switching the cpu from one process to another?

I have read in the Galvin book that Switching the cpu from one process to another process requires preserving the address space of the current process.Why this address space need to be preserved?
1
vote
1answer
182 views

What does the Google Chrome exactly do when a new tab is opened?

Today, i observed an interesting behavior. I am using windows XP-sp3 OS. When i open a new tab in Google Chrome & view the task manager, a new process is created. But, after some time, this ...
1
vote
3answers
122 views

Usage of registers by the compiler in multithreaded program

It is a general question but: In a multithreaded program, is it safe for the compiler to use registers to temporarily store global variables? I think its not, since storing global variables in ...
0
votes
1answer
167 views

Difference between OS process and normal process?

In my understanding a process is, "an operating system level concept used to describe a set of resources (such as external code libraries and the primary thread) and the necessary memory allocations ...
0
votes
1answer
138 views

How to reset process ID in QNX

If someone knows how to rest process ID in QNX, please let me know. I am searching the web but looks like nothing to be found. I actually need to write a script to do the following: Look for current ...
1
vote
3answers
549 views

Process VS thread : can two processes share the same shared memory ? can two threads ?

After thinking about the the whole concept of shared memory , a question came up: can two processes share the same shared memory segment ? can two threads share the same shared memory ? After ...
1
vote
1answer
89 views

How to hibernate application?

my question may seem too weird but i thought about the windows hibernation thing and i was wondering if there is a way to hibernate a specific process or application. i.e : when windows start up from ...
1
vote
1answer
414 views

How to get all running processes in Qt

I have two questions: Is there any API in Qt for getting all the processes that are running right now? Given the name of a process, can I check if there is such a process currently running?
0
votes
1answer
506 views

How to know amount of max virtual memory allocated to a process?

I have a process/Linux, which runs out of memory very soon, and I wonder that it might be because per process max allowable virtual memory set by system setting might be low, in which case the process ...
0
votes
2answers
154 views

Are processes executed on operating system

I saw this question somewhere Four processes p1, p2, p3, p4 - each have sizes 1GB, 1.2GB, 2GB, 1GB. And each processes is executed as a time sharing fashion. Will they be executed on an operating ...
0
votes
0answers
225 views

can't use CreateProcess in Child process using simulating fork code on Windows 7 based on ZwCreateProcess

I try to simulate fork using ZwCreateProcess. It seems to work when I use some simple test program. But when I try to create a new process using CreateProcess API in the forked child process. The ...
4
votes
2answers
118 views

Mapping a Java program to an Operating System process

I am wondering how this happens: how is a Java program mapped to an OS process (like the one shown for Linux below): In C, it's a straightforward association in how a program is written and how the ...
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
1answer
67 views

why process initially runs in kernel mode

Why does a process created by fork first runs in Kernel mode and then in user mode? Why does it not run directly in user mode? What problems will occur if dispatcher directly runs it in user mode? ...

1 2 3