0
votes
0answers
24 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 ...
0
votes
0answers
27 views

is it possible to schedule a kernel thread to a specific core

In linux it is possible to schedule a pthread to a specific processor core using set_affinity() function. is it possible to schedule a kernel thread to a specific core somehow. if yes, is it possible ...
1
vote
0answers
20 views

can we forcibily place data in a specific cache

I am trying to forcibly put data into a cache(either L1, L2 or L3). After that i will create two threads and perform some read/write operations by accessing data present in the cache and measure the ...
1
vote
1answer
33 views

find the pages accessed by thread

I am looking for some scheduling options based on data accessed by threads. Is there any way to find the pages of cache accessed by a specific thread. If i have two threads from two different ...
2
votes
0answers
29 views

Tasks behaving incorrectly in round-robin schedule

I have FreeRTOS running on a STM32F4DISCOVERY board, and I have this code: xTaskCreate( vTask1, "Task 1", 200, NULL, 1, NULL ); xTaskCreate( vTask2, "Task 2", 200, NULL, 1, NULL ); ...
0
votes
2answers
386 views

Shortest Job First Scheduling

Suppose that following processes arrive for the execution at the times indicated. Each process will run the listed amount of time. Process [Arrival Time(ms) , Burst Time(ms)] A[0 , 5] , B[3 , 5] , ...
0
votes
0answers
252 views

SJF preemptive scheduling

i got this table for preemptive SJF JOB ARRIVAL Burst TIME Time A 15 5 B 27 8 C 19 7 D 4 6 E 10 8 F 52 4 G ...
1
vote
0answers
79 views

order of setting cpu affinity and scheduling on multicore systems (Linux 2.6)

I have some doubts regarding the order of setting cpu affinity and scheduling on multicore systems (Linux 2.6) Suppose (a hypothetical situation) I have a process and I have set it's affinity to ...
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
2answers
128 views

real time operating system scheduler handling

Should I use IRQ mode to handle scheduler? I mean I use timer interrupt and in interrupt procedure I put a code that saves environment (registers, stac), select a new task and load its environment. I ...
0
votes
1answer
35 views

Scheduling the created thread immediately

i am using PsCreateSystemThread() for creating a thread. But it is not getting scheduled immediately. How can i force that thread schedule immediately after the creation of the thread.
0
votes
1answer
177 views

Scheduling Algorithms

I have a question in my exam that I don“t know how to answer it: Consider that you have a machine for personal use and you are developing various programs. Before going to lunch you want to leave ...
0
votes
1answer
261 views

How to make a Linux Scheduler Gantt Chart?

I am studying the linux process scheduler but I can not figure out how to make the Gantt chart for this situation: Process | Arrival | Burst Time | Sched. Class | RT Priority | RT Quantum | Nice P1 ...
2
votes
3answers
272 views

Why one non-voluntary context switch per second?

The OS is RHEL 6 (2.6.32). I have isolated a core and am running a compute intensive thread on it. /proc/{thread-id}/status shows one non-voluntary context switch every second. The thread in question ...
0
votes
0answers
446 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 ...
2
votes
1answer
577 views

Time Slices in Round Robin Time Scheduling

If you have a very large (say too big) time slice for a round robin scheduler what kind of performance effect should I expect in the Operating System? My only thought is that processes that require a ...
0
votes
1answer
76 views

Where are the functions defined for CFS in Linux

In sched_class for a Completely Fair Scheduler (CFS) there is function prototype defined for enqueue_task. Where is the actual function implementation defined? A search got me a definition here ...
2
votes
0answers
649 views

Calculation of response time in operating system

This was an exam question I could not solve, even after searching about response time. I thought that answer should be 220, 120 Effectiveness of RR scheduling depends on two factors: choice of ...
0
votes
0answers
191 views

Scheduling algorithms and quantum [closed]

I would like to know what impacts does a scheduling algorithm say Round Robin of FIFO have on a Operating system. I understand the a scheduling algorithm has the processes run in burst then switch ...
0
votes
2answers
1k views

Types of Scheduling algorithms

I understand that CPU scheduling algorithms are classified into Interactive - Round Robin, Priority scheduling Batch Scheduling - FCFS,SJF But I cant understand the reason behind the naming ...
0
votes
0answers
74 views

how to which function is being executed by worker thread(events/0)

For debugging purposes, I like to know which function is executed by worker thread(events/#0). Is there any way I get this information when the evnets executes ?
0
votes
0answers
99 views

I have a process which I believe may be getting preempted. How can I find out what is interfering with it?

A small c++ program that does nothing but the following: struct bat { const char* a; const char* b; void* v; }; struct rat { rat() : isOn(true), ...
6
votes
3answers
671 views

How does OS scheduler regains control of CPU?

I recently started to learn how the CPU and the operating system works, and I am bit confused about the operation of a single-CPU machine with an operating system that provides multitasking. As such, ...
5
votes
1answer
224 views

How does OS scheduler schedule threads that belong to two different processes (tasks)? [closed]

As far as all books say, switching between tasks/processes is more expensive than switching between threads of the same process/task. If so, then scheduler of threads-aware OS should schedule threads ...
2
votes
0answers
404 views

How to check if my CPU is banned from interrutps in the /proc/interrupts file? [closed]

I am running irqbalance with the option IRQBALANCE_BANNED_CPUS=3e, which means ban everything but cpu0 (111110). Now I want to make sure it is working but when I check the file /proc/interrupts I see ...
0
votes
3answers
114 views

Invoke java program at specific intervals

I have a program which reads Inbox messages from email accounts, as the title says i would like to run the program after every 1.5hrs. Is there any OS(Windows and Linux) level or JVM level solution ...
1
vote
2answers
983 views

Round Robin Scheduling : Two different solutions - How is that possible?

Problem : Five batch jobs A through E, arrive at a computer center at almost the same time. They have estimated running times 10, 6, 2, 4, and 8 minutes. Their (externally determined) priorities are ...
0
votes
1answer
856 views

Round Robin Scheduling : What happens when all jobs arrive at the same time?

Problem : Five batch jobs A through E, arrive at a computer center at almost the same time. They have estimated running times 10, 6, 2, 4, and 8 minutes. Their (externally determined) priorities are ...
0
votes
1answer
654 views

Storing and retrieving process control block

My understanding is that, when a process is in execution, the contents of the PCB(which is in kernel memory space ?) are loaded onto the CPU registers, and Status registers, Kernel Stack Pointers, ...
2
votes
1answer
750 views

Simulating round robin with pthreads

The task is to have 5 threads present at the same time, and the user assigns each a burst time. Then a round robin algorithm with a quantum of 2 is used to schedule the threads. For example, if I run ...
0
votes
2answers
451 views

Scheduling policies in Linux Kernel

Can there be more than two scheduling policies working at the same time in Linux Kernel ? Can FIFO and Round Robin be working on the same machine ?
1
vote
1answer
79 views

who wakes up a process which is blocked because it executed wait on a semaphore unsuccessfully?

If a process executes a wait on a semaphore and is unsuccesful(since the value of the semaphore was initially 0), I understand that the process is blocked(goes to sleep mode?). Who wakes the process ...
1
vote
2answers
441 views

Does a context switch occur in a system whose ready queue has only one process and which uses round-robin scheduling?

Does a context switch occur in a system whose ready queue has only one process and which uses round-robin scheduling? Assume that current cpu burst of the lone process spans more than one time-slice ...
0
votes
1answer
391 views

Writing a scheduler for a Userspace thread library

I am developing a userspace premptive thread library(fibre) that uses context switching as the base approach. For this I wrote a scheduler. However, its not performing as expected. Can I have any ...
0
votes
2answers
47 views

Surely schedulers aren't this harmful? Don't we have better APIs?

I'm wondering what APIs are available to avoid the following problem. Casting my mind back to Operating System lectures on my old CS course, the topic was multiprocess scheduling and concurrent I/O. ...
3
votes
1answer
702 views

How can C-SCAN (elevator) algorithm cause starvation?

I'm reading Silberschatz's OS book. In section 16.8.1 it says: The fundamental problem with the elevator algorithm is that I/O operations cocentrated in a specific region of the disk can ...
1
vote
5answers
229 views

These days, what are good reasons for setting thread affinity rather than leaving it to the OS?

Searching answers here for "thread affinity", I see a lot of interest in doing it but little justification for it save possibly getting stable QueryPerformanceTimer results. Assuming a modern OS and ...
1
vote
2answers
578 views

Does any JVM implement blocking with spin-waiting?

In Java Concurrency in Practice, the authors write: When locking is contended, the losing thread(s) must block. The JVM can implement blocking either via spin-waiting (repeatedly trying to acquire ...
5
votes
4answers
2k views

Difference between OS scheduling and RTOS scheduling

Consider the function/process, void task_fun(void) { while(1) } If this process were to run on a normal PC OS, it would happily run forever. But on a mobile phone, it would surely crash the entire ...
2
votes
1answer
1k views

How to distinguish between I/O bound and CPU bound jobs ?

How does a long term scheduler decide which job is I/O bound and which one is CPU bound? I heard that by using cpu burst we can distinguish between I/O bound and CPU bound jobs, but how is the CPU ...
0
votes
1answer
870 views

Does disabling interrupt automatically disable CPU scheduling?

Hey guys, is it true that all the process/thread scheduling will be disabled if interrupt is disabled? What I know is interrupt includes clock interrupt and other interrupts. CPU scheduling(e.g., ...
4
votes
1answer
2k views

Niceness and priority processes on linux system

I am looking for a way to modify a process' priority through command line. I found the builtin (bash) nice and the command renice which allow to modify the niceness of the process, but not the actual ...
0
votes
2answers
748 views

Kernel is non-preemptive…How?

A process which is executing in kernel mode can not be preempted. How is it possible? Consider the case that a process is executing in kernel mode and taking a lot of time. Due to this the rest of ...
0
votes
1answer
94 views

Challenge in implementing dynamic priorities to processes in scheduling them

In general, what could be the challenge in implementing priority-update based on aging. Like, if a process is aging, we need to increase its priority so that it does not starve. And once it is served, ...
2
votes
2answers
3k views

how dispatcher works?

I have recently started my OS course. As far as i know the work of dispatcher is to save the context of current process and load context of process to be run next. But how does it do that? When a ...
0
votes
1answer
83 views

Scheduler in MultiThreding enviroment

How many scheduler might find in a Operating System with Multithreading? I'm not sure of the answer, but I think it depends on whether you work with kernel-level threads or user level, I hope you can ...
0
votes
1answer
228 views

Application-level scheduling

As far as I know Windows uses a round-robin scheduler which distributes time slices to each ruanable thread. This means that if an application/process has multiple threads it gets an larger amount ...
6
votes
1answer
1k views

Who schedules the scheduler in OS - Isn't it a chicken and egg scenario?

Who schedules the scheduler? Which is the first task created and how is this first task created? Isn't any resource or memory required for it? isn't like a chicken and egg scenario? Isn't scheduler ...
4
votes
1answer
530 views

What is the context switching time?

I have a doubt in context switching. In multi threading, when the context switching occurs, what will be the time between two context switches? Is it fixed time interval?
0
votes
3answers
288 views

Can a shared ready queue limit the scalability of a multiprocessor system?

Can a shared ready queue limit the scalability of a multiprocessor system?

1 2