In computer science, scheduling is the method by which threads, processes or data flows are given access to system resource.

learn more… | top users | synonyms

0
votes
0answers
19 views

Minizinc: exams scheduling

I would have to deal with this problem: It is assumed that a certain degree has fully available in classrooms to make tests (only tests written), each with a capacity of Ci places, for i = 1...A and ...
2
votes
1answer
38 views

Java program never quits after scheduling and running a TimerTask

I have this simple Java code that should schedule something to run in 1 millisecond and then quit. import java.util.*; class A { public static void main(String[] args) { new ...
0
votes
2answers
29 views

How long does Timer.schedule schedule for when delay is 0?

In Timer.schedule(TimerTask task, long delay), it says it will throw if delay is negative, but doesn't say anything about if delay is zero. What will happen? I tried on openjdk and it ran instantly. ...
1
vote
1answer
29 views

scheduling execution of MS Access DB

I have a MS Access 2007 DB that is being executed via Windows NT scheduler. Basically, I created this entry in Windows Scheduler that is run every night at midnight. ...
0
votes
0answers
12 views

What to do with scheduled internet use when device is offline?

Let´s say I want to update data in my application from the internet once a week, let´s say every seven days exactly. But what if the device is offline at that scheduled time? I actually thought of a ...
2
votes
3answers
62 views

Java Thread Scheduling

My notes say that there are two main categories of thread scheduling algorithms, preemptive and time sharing. I'd like to clear up exactly how these work in Java. As I understand (and PLEASE correct ...
-1
votes
1answer
41 views

Solve “Out of local stack” in this specific constraint programming in prolog

I'm currently trying to create schedules for bus drivers in prolog. I wish to find a limited number of solutions. But I get the "Out of local stack" error, and I suppose it is because I'm getting too ...
0
votes
0answers
27 views

Guaranteed scheduling?

I’m studying operating systems and I can’t really understand the guaranteed scheduling. I’m very confused! Can anyone please help me and give me an example with time- processes? I have already ...
1
vote
1answer
21 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: ...
1
vote
1answer
27 views

Does the .NET Garbage Collector's stop-the-world effect halt or delay the execution of unmanaged threads and timer callbacks?

I have an application that needs to have code executed at very precise intervals. For that purpose I also need Windows' scheduler resolution increased to 1ms via timeBeginPeriod. To do that, I have a ...
0
votes
1answer
42 views

Inconsistent lock state

I am a biginner of Linux kernel. I modified the scheduling sub-module of linux kernel 3.3 and tried to boot the kernel on Beagleboard. I met the error of "Inconsistent lock state". Anyone could help ...
1
vote
0answers
5 views

CFQ scheduling algorithm

The CFQ algorithm uses an ordered set of queues based on the I/O priority of the processes that made the requests. That means there's a queue for process of priority, let say, 1, another one for ...
0
votes
0answers
36 views

Idle time for Earliest deadline algorithm

I can't figure out how to show the correct diagram for the earliest deadline first algorithm with idle times. So far here is my code: import java.util.*; class deadlineprototype { ...
1
vote
1answer
59 views

Earliest deadline cpu scheduling

Updated:Solved my first question about sorting. But now I can't figure out how to show the correct diagram for the earliest deadline first algorithm with idle times. So far here is my code: ...
1
vote
2answers
41 views

Process Scheduling from Processor point of view

I understand the scheduling is done by kernel, let us suppose a process(P1) in Linux is currently executing on the processor. Since, the current process doesn't know anything about time slice, and ...
0
votes
3answers
58 views

Java: Time drift

I've got a class that acts as Clock from a time in the past, that can be played back at different speeds. In my example code below I am playing back at 60x. I'm noticing that the time drifts by a ...
1
vote
1answer
31 views

Quartz scheduler interrupting job?

I have a quartz job. i need to stop its processing through UI. we provide a button where in user can click STOP button then current running process should be stopped. but further scheduling should ...
2
votes
1answer
21 views

Which advatanges has @Schedule over an own implementation?

We're using Spring, and I suggested to my colleague that he should use @Schedule instead of coding the behaviour manually with a Runnable and Thread.sleep(). I pointed out that the annotation is ...
0
votes
1answer
25 views

context_switch and system call virtualization

When the kernel is executing a context_switch(), i.e. when it is in that function, is it possible that some other task makes a system call? As far as I understand, as the processor state is being ...
1
vote
2answers
60 views

Single threaded timer and/or interval inside a Task<T>

I want to run a function on an interval, inside of a Task. Something like, Task t = Task.Factory.StartNew(() => { while (notCanceled()) { doSomething(); ...
1
vote
0answers
12 views

Get process's timeslice in user mode

How can I get the value of process's timeslice in user mode? I designed a new scheduling policy, and I want to check if processes with the same policy (my policy) have the same timeslice to run. It is ...
1
vote
0answers
29 views

So the design of client-server separation is not the bottleneck of X Window?

In the answer of this, it mentioned: People also hear that X uses the "network" and think this is going to be a performance bottleneck. "Network" here means local UNIX domain socket, which has ...
-1
votes
0answers
5 views

Where can find EQL or MRL and eqtc [closed]

After read Real-Time Systems: Scheduling, Analysis, and Verification i find process algebra need EQL or MRL software and translator eqtc where can download these software to use?
-1
votes
0answers
39 views

How to calculate Round Robin Scheduling of four processes when there is 5 processes available [closed]

Suppose, there are 4 processes P1(burst time-10),P2(burst time-1),P3((burst time-2),P4(burst time-1). The scheduler uses Round Robin scheduling algorithm, and decides to run the processes in the ...
2
votes
1answer
42 views

Spring scheduler when runs after application starts and after midnight

Hoo to describe Spring scheduler when runs after application starts and after 00:00 ?
-1
votes
0answers
15 views

Appointment Scheduling plugin/SASS recommendation

Anyone know of an appointment scheduling SASS/plugin/service? I need something that will "aggregate" all of the current installers I have, so that all a user has to do is book a "10:00AM" slot as long ...
0
votes
1answer
24 views

Scheduling C# app throughts Webclient exception

I have developed a c# application to download a zip file from a site, when manually run the app, it does its job normally and exits, But when i schedule it to run automatically using task scheduler in ...
0
votes
0answers
36 views

Where do_fork() defines the “prio” field for the newly allocated task_struct?

That includes other fields like static_prio and policy. I know that by definition the child process inherits them from the father, but where does it happens in the code of do_fork() ?
1
vote
3answers
55 views

Using the default Scheduler in Akka, do I need to manually cancel events when the target actor stops?

When using the methods on the default Akka system scheduler (context().system().scheduler().schedule() from inside an actor), and one of the overloads accepting a destination actor, do I need to ...
-1
votes
0answers
10 views

Scheduling and randomization & bias testing of Multithreaded Programs [closed]

Dear friends I have been assigned a problem statement to solve, for which I am not able to find solution. The Problem statement goes as follows: This notion of random testing can be applied to ...
1
vote
0answers
53 views

Algorithm to schedule tasks in up to 'p' processors who each have fixed task queue lengths

How to write the logic to schedule tasks where I need to: Schedule len(task_fifo) tasks on a processor group pg, pg has up to p processors 1 <= num_of_processors <= p processors. To reserve ...
-5
votes
1answer
55 views

Water Storage Scheduling [closed]

MIB's headquarter has N water tanks. Tank i can store at most ci units of water. Each tank has its own incoming and outgoing pipes. Incoming pipe of tank i leaks water at rate ui, which means if we ...
1
vote
1answer
37 views

Algorithm: Some sort of version of producer/consumer? Scheduling

I'm not sure if this is a producer/consumer problem but I couldn't find a better way to phrase my question. I'm wondering if this problem (or a similar one) has already been solved. If it hasn't, is ...
0
votes
0answers
19 views

Distinguishing the data using 2 devices which run same carl9170 driver

I want to distribute the data (packets) using two devices. In this case I use carl9170 device driver to do it. The distribution of the data is using round robin scheduling. Each device will run the ...
1
vote
1answer
50 views

PHP script that generates an optimal schedule for employees - please point me to the right direction [closed]

I have to create a PHP script that would generate an optimal schedule for several student assistants. User input is the student assistant's class schedule, and from this information his free time will ...
0
votes
2answers
43 views

On-call night scheduling algorithm

I work in a residence hall at my college as an RA, and each night we need two RAs to be on call (able to respond to incidents and emergencies). Each month, RAs submit the nights they cannot be on ...
0
votes
0answers
30 views

Scheduling simultaneous events with a defined time range (Advanced Python Scheduler?)

So here's setup, I have an object, let's call it X, that is polled every 500ms (somewhat irrelevant) now say I have 2 other objects, we'll call them s1 and s2, that watch different values that X is ...
0
votes
1answer
25 views

How can I use Heroku Scheluder Standard to automatize backups?

As you can say, I have an app running in Heroku, recently I installed Heroku Scheluder Standard add-on to automatize heroku pgbackups:capture --expire --app my-app, but it's been 3 days and it doesn't ...
0
votes
1answer
45 views

SSRS Schedule Biweekly

I have reporting services in sharepoint integrated mode. I have created a schedule with the settings as follows: StartDate 2013-03-01 11:55:00.000 EndDate NULL EventType ...
0
votes
0answers
38 views

How do I generate a DAG of instruction dependencies for x86/x64 assembly?

I'm writing a scheduling optimizer for x86/x64 assembly code. It would take as input either a assembly.s source or compiled.o object file, and determine the optimum instruction ordering for a given ...
1
vote
1answer
69 views

how is `while(1)` optimized not to take all resources?

Suppose I have some code that does this: while(1) { scanf("%c", &key); // if E or e, exit if (key == 'E' || key == 'e') break; } This obviously does not take up all ...
0
votes
0answers
21 views

Windows scheduled job delayed after changing time

I am facing an issue and need your expert advice. After changing timezone on frontend and DB servers i am facing issue where scheduled jobs are running late by one hour. Time Zone in DB Server was: ...
0
votes
0answers
18 views

Can we run two services without creating a thread for every 10 secs Using java in web environment?

According my requirement, once ServletContext is created, i need two run two services(lets say backup,cleanup)continuously, for a specified period of time( for every 10 secs) as long as ...
0
votes
0answers
7 views

does a process store in memory when it is ready or when its executed

This is for process scheduling, does a process store in memory when it is ready to be executed or when it started being executed. I am having an issue doing first come first serve and non preemptive ...
0
votes
1answer
76 views

Interval Scheduling Algorithm: Earliest Finish Time

I'm trying to simulate a interval scheduling algorithm detecting the earliest finishing time using greedy technique. My problem is that what are the inputs if it will be created in a console ...
0
votes
0answers
27 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
1answer
61 views

Java API for Autosys , cs-7

I am new to the enterprise scheduler world . I need to schedule a job in Enterprise schedulers like Autosys, cs-7 using java program. ...
0
votes
0answers
15 views

Task Scheduler Managed Wrapper - max count of running tasks

I use this Task Scheduler Managed Wrapper library in my web application. I want to add tasks, but maximum 20 tasks from my application. Is there any way to implemented this functionality? It's a ...
0
votes
0answers
28 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 2 3 4 5 23