Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
158 views

C code - memory access / preemption

I have written a piece of code wherein a data: unsigned char buf[4096]; // data in chunks of size 4k unsigned counter[256]; I am adding up the i/p data for every 3 contiguous bytes and storing the ...
3
votes
4answers
865 views

How does a VxWorks scheduler get executed?

Would like to know how the scheduler gets called so that it can switch tasks. As in even if its preemptive scheduling or round robin scheduling - the scheduler should come in to picture to do any kind ...
3
votes
4answers
3k views

What is preemption / What is a preemtible kernel? What is it good for?

Explained in your own words, what is preemption and what does it mean to a (linux) kernel? What are advantages and disadvantages in having a preemptible kernel?
2
votes
3answers
367 views

How to limit the execution time of a function in C/POSIX?

Similar to this question, I'd like to limit the execution time of a function--preferably with microsecond accuracy--in C. I imagine that C++ exceptions could be used to achieve a result similar to ...
2
votes
2answers
159 views

Context switches in control paths of a non-preemptive kernel (Linux)

The Linux kernel is non-preemptive, but I just read that there could be context-switches in different control paths. Doesn't that contradict the non-preemptive nature on the Linux kernel?
1
vote
3answers
151 views

basic multithreading

I have the following Interview question: class someClass { int sum=0; public void foo() { for(int i=0; i<100; i++) { sum++ } } } There are two ...
1
vote
1answer
267 views

Linux Kernel Preemption during spin_lock and mutex_lock

When a process in the kernel space is holding a spin_lock, the process cannot be preempted due to any of the following conditions : When the time-slice of the process gets exhausted When a high ...
1
vote
2answers
190 views

is linux kernel preemptive or not? [closed]

Is the Linux kernel preemptive or not? There is a big difference between Understanding the Linux Kernel 2nd edition and 3rd edition. In the 2nd it is written that the Linux kernel is not preemptive ...
1
vote
1answer
174 views

How to set a time limit on a function with a secure area

I'm trying to develop a program to time limit the execution of a function. In the code below I have a function named Inc which does a lot of iterations (simulated by the infinite loop). The first part ...
0
votes
0answers
158 views

Linux spin locks and preemptions/interrupts

When a thread holding a spin lock, can it get preempted in Linux 2.6? Is there any consequence of this preemption? How can you prevent the preemption when holding a spinlock?