The context-switch tag has no wiki summary.
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 ...
0
votes
0answers
19 views
Improving response of X Window by reimplementing X server as a shared library?
As far as I know:
Both the X server and X clients are implemented as processes in X Window. Data need to be passed between them (via IPCs) to make things work. Because at least one context switch is ...
0
votes
0answers
24 views
About voluntary and non volutary context switches in linux [migrated]
I have searched on Google for voluntary and non voluntary context switches but not fully satisfied with the answers. So what exactly happens in voluntary and non voluntary context switches?
In the ...
0
votes
2answers
29 views
When do process switching takes place
I am confused about the process switching between two processes. When a new process is created using fork, what are the general rules applicable for switching between processes. Is it only when one ...
1
vote
1answer
48 views
Context switch and the OS scheduler algorithm
So the way I understand it when one process switches out for another a Kernel will save out the current state of a process and then a OS scheduler algorithm will choose the next process to swap in. ...
0
votes
0answers
40 views
saving up a new process information into TLB, during a context switch
I am implementing the virtual memory for this assignment http://www.eecg.toronto.edu/~yuan/teaching/ece344/asst3.html
And i was just wondering, it says make sure that "TLB state is initialized ...
1
vote
2answers
162 views
Azure ServiceBus & async - To be, or not to be?
I'm running Service Bus on Azure, pumping about 10-100 messages per second.
Recently I've switched to .net 4.5 and all excited refactored all the code to have 'async' and 'await' at least twice in ...
2
votes
1answer
68 views
Restoring the environment by sigsetjmp and longsetjmp
I'm using the couple sigsetjmp and singlongjmp with SIGALARM for interrupting a system call, which is illustrated in the following code
//data of Alarm_interrupter
void (TClass::*fpt)(const char*); ...
0
votes
1answer
60 views
Running a function right after each context switch, in C under windows-XP
I'm programming a multithreading application in C under windows-XP.
I'm looking for a way to run a function, right after each context-switch between threads of the application (and just before the ...
0
votes
0answers
69 views
Using swapcontext with signal handler
I am trying to build a user level thread library like pthreads.
I want to use swapcontext within the signal handler. But since it is not a signal safe function, it is not advisable to use it. Can ...
0
votes
1answer
72 views
ZF2 equivalent of Zend_Controller_Action_Helper_ContextSwitch?
I cannot find something similar in Zend Framework 2.
1
vote
1answer
146 views
makecontext uc_link gives segmentation fault
I am trying to make a user level thread library like pthreads. I am using the makecontext/swapcontext to do the switching between the threads and while making a context for the thread, i am passing ...
3
votes
2answers
133 views
thread local and context switch
I'm got some C++ code making use of thread local storage, each thread has a vector it can push data into.
I use TLS to store an index ID per thread, this can be used to look up which vector to ...
0
votes
0answers
139 views
Linux thread switch overhead vs. process switch overhead
I appreciate that under Linux, threads are mapped onto processes. What I am unclear about is the difference in magnitude between thread switch overhead and process switch overhead using the Native ...
0
votes
1answer
120 views
Executing block of code without context switch
Is there any way to execute a block of code in C without suffering a Context Switch?
I have modified perf stat to sample the counters periodically. While this works, it ends up giving me some bad ...
0
votes
1answer
60 views
Overriden timer interrupt not working properly
I am working on a small kernel as a project for my University.
I have overridden (not sure if that's the correct expression) a timer interrupt routine.
It works well until the first context ...
2
votes
2answers
171 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
1answer
53 views
Why synchronization requires a context switch down to the OS?
I was watching a presentation on high performance computing and starting at 24:55 one of the presenter states that synchronization by acquiring a lock requires a context switch down to the kernel of ...
-1
votes
1answer
327 views
Context switch implementation [closed]
Can a context switch be implemented by a flip flop stored in the Translation Lookaside Buffer?
I can't seem to find any information of how context switches are implemented in terms of hardware. I ...
0
votes
1answer
118 views
how to force context switching in embedded development kit
i learn these days about embedded development with multi processors, and i wanted to ask if it is possible to force a context switching in debug mode, to access a specific thread i want?.
and if it is ...
1
vote
0answers
86 views
Zend Context Switch with Layout
I'm using context switching within Zend to display HTML via XHR in a dialog.
Throughout my application I load CSS/ script files based on the module/ controller I am in; an example being while in the ...
1
vote
2answers
227 views
CPU Switches from Kernel mode to User Mode on X86 : When and How?
When and how does CPU Switch from Kernel mode to User Mode On X86 : What exactly does it do? How does it makes this transition?
1
vote
1answer
110 views
Type-1 VMM and Ring 1
Recently, I am doing homework about Virtualization. My question is, how VMM transfer control to the guest kernel and run that code in Ring 1?
Type-1 VMM: This is the classical trap-and-emulate VMM. ...
0
votes
3answers
347 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 ...
2
votes
3answers
313 views
Measuring the time for a context switch
I am getting acquainted with the MicroC/OS-II kernel and multi-tasking. I have programmed the following two tasks that uses semaphores:
#define TASK1_PRIORITY 6 // highest priority
#define ...
0
votes
2answers
186 views
how quick can the processor handle the interrupts
I was studying about interrupts. So most architecture are interrupt driven, if everything is interrupt driven, how fast the processor can handle all of those. For example, while pressing a key board ...
2
votes
2answers
1k views
Context switch internals
I want to learn and fill gaps in my knowledge with the help of this question
So, a user is running a thread (kernel-level) and it now calls yield (a system call I presume)
The scheduler must now save ...
3
votes
2answers
80 views
Why is sys time 0 here?
When I do $(time sleep 1), I got:
real 0m1.001s
user 0m0.000s
sys 0m0.000s
I'm not sure why sys time was 0, so nanosleep is called from userspace ?
Also, does the real time equals to ...
1
vote
2answers
273 views
Is context switch time included in thread quantum time?
I mean if quantum time of thread is 20 ms, so some time (15 ms) of 20 is spent in context switch and other (5 ms) on execution?
2
votes
1answer
112 views
Can I save MSP430 CRC registers during FreeRTOS context switch?
I am using MSP430F5418 with FreeRTOS 7 in medium data model.
I want to save the MSP CRC registers on FreeRTOS context switch.
I edited the portext.s43 like this.
In save context macro, after pushing ...
8
votes
1answer
196 views
Is kernel/sched.c/context_switch() guaranteed to be invoked every time a process is switched in?
I want to alter the Linux kernel so that every time the current PID changes - i.e., a new process is switched in - some diagnostic code is executed (detailed explanation below, if curious). I did some ...
11
votes
2answers
512 views
(Writing kernel) How do I modify the interrupt descriptor table?
I am writing a small kernel just to poke around the low level stuff a bit. Right now, it boots in Virtual Box and I can display text to the screen, allocate some memory, and other really basic ...
3
votes
1answer
124 views
When can the rounding mode of the CPU change?
In quite some articles they suggest using the fistp instruction for converting float->integer in a fast way. This is dependent on the current rounding mode of the CPU, so you'll have to set it.
But ...
2
votes
3answers
2k views
simplest tool to measure C program cache hit/miss and cpu time in linux?
I'm writing a small program in C, and I want to measure it's performance.
I want to see how much time do it run in the processor and how many cache hit+misseshas it made. Information about context ...
3
votes
1answer
357 views
Restrictions while kernel is running an ISR routine
What are some of the important do's and dont's inside a kernel mode and ISR Routine ?
For example -
Is context-switching disabled while running an interrupt handler ?
Can a context switch happen ...
1
vote
1answer
568 views
Returning from kernel mode to user mode
I'm a bit confused about the understanding of a mode switch in Unix kernel. I give my understanding here and open it for discussion/correction.
While transitioning from user mode to kernel mode, the ...
0
votes
1answer
118 views
Finding page table and page directory for a new process (after a context switch)
When there is a process switch, and the page tables and page directory of the new process has to be used, from where does the kernel come to know about the location of the page directory for the new ...
0
votes
1answer
423 views
Context switch using arm inline assembly
I have another question about an inline assembly instruction concerning a context switching. This code may work but I'm not sure at 100% so I submit this code to the pros of stackoverflow ;-)
I'm ...
0
votes
1answer
656 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
1k views
How does Wait/Signal (semaphore) implementation pseudo-code “work”?
Wait(semaphore sem) {
DISABLE_INTS
sem.val--
if (sem.val < 0){
add thread to sem.L
block(thread)
}
ENABLE_INTS
Signal(semaphore sem){
...
2
votes
4answers
189 views
Where to return from an interrupt
I've read (and studied) about Interrupt Handling.
What I always fail to understand, is how do we know where to return to (PC / IP) from the Interrupt Handler.
As I understand it:
An Interrupt is ...
0
votes
1answer
35 views
Does calling convention affect a context switch?
Does it matter what my calling convention was for doing a context switch. As in, in AMD64, the first 4 parameters are passed via registers or something.
Does the context switch system need to worry ...
3
votes
3answers
2k views
Context switch on a process
I have to do a system call to count the voluntary & involuntary context switches of a process. I already know the steps to add a new system call to a linux kernel but i have no clue of where i ...
1
vote
0answers
295 views
Context switch on Windows 7 and Intel i7 CPU
How is the context switch implemented in Windows 7?
My understanding is that the hardware context switch on Intel CPUs is much slower than other CPUs. (this is off the top of my head from 10 years ...
0
votes
1answer
250 views
How does a user process perform system call without going through context switch?
When a user process performs a system call, a kernel process gets invoked. Now how does this NOT result in a context switch ? Since the kernel process is different from a user process . Or Am I wrong ...
2
votes
1answer
840 views
Context switching kernel processes in Linux
Consider the process keventd. It spends all it's lifetime in kernel mode.
Now, as far as I know, Linux checks if a context switch is due, while the process is switching from kernel mode to user mode, ...
0
votes
2answers
159 views
Windows - thread id change when a context switch happens
Do Thread Id's change when a context switch (due to any reason) happens?
1
vote
2answers
816 views
How do we reduce Context Switch time
All we know that context switch time is pure overhead and is of no use.But i would like to know how can one reduced context switch time .Is using more register help us doing in so?
1
vote
3answers
115 views
Keep Track of Reference to Data ( How Many / Who ) in Multithreading
I came across a problem in multithreading, Model of multithreading is 1 Producer - N Consumer.
Producer produces the data (character data around 200bytes each), put it in fixed size cache ( i.e ...
0
votes
1answer
86 views
Degeneration from context switching to thrashing in the below model?
I have a component, that does the following
Accept a SINGLE message over network using custom protocol built over tcp/ip from source A
Process the message (takes roughly 500 micro second)
Sends the ...