Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
950 views

Cost of context switch between threads of same process, on Linux

Is there any good empirical data on the cost of context switching between threads of the same process on Linux (x86 and x86_64, mainly, are of interest)? I'm talking about the number of cycles or ...
7
votes
6answers
282 views

Can my thread help the OS decide when to context switch it out?

I am working on a threaded application on Linux in C++ which attempts to be real time, doing an action on a heartbeat, or as close to it as possible. In practice, I find the OS is swapping out my ...
6
votes
1answer
564 views

How does schedule()+switch_to() functions from linux kernel actually work?

I'm trying to understand how the schedule process in linux kernel actually works. My question is not about the scheduling algorithm. Its about how the functions schedule() and switch_to() work. I'll ...
6
votes
5answers
7k views

Write a C program to measure time spent in context switch in Linux OS

Can we write a c program to find out time spent in context switch in Linux? Could you please share code if you have one? Thanks
5
votes
1answer
1k views

Creating a custom JSON response object with Zend Action Helper ContextSwitch

I normally append an encoded json object to the response body, however I now have a situation that warrants using the ContextSwitch action helper. I have a Zend_Form that requires three different ...
5
votes
2answers
280 views

Simulating context switches in JavaScript?

I've been working on implementing a pretty complex system in JavaScript that needs to simulate, among other things, multithreaded processes. In a real multithreaded process (such as a kernel thread) ...
4
votes
3answers
84 views

Classic asp — better to do lots of response.write or use <%

I'm editing some legacy code in classic ASP that uses a lot of code like the following: pf "<div class=""span-6 last"" style=""margin-top:4px;"">" pf "<div class=""clean-lightblue-left"" ...
4
votes
4answers
2k views

What is saved in a context switch?

What is exactly saved and restored in a context switch between two threads in the same process between two processes
3
votes
1answer
80 views

are the CPU cycles used up in doing a context switch accounted for in the process context`

If a process causes a lot of context switches, will the CPU cycles used in the context switch be shown in hte process CPU utilization. In other words, if I run a process that essentially repeatedly ...
3
votes
4answers
2k views

thread context switch vs process context switch

Could any one tell me what is exactly done in both situation? what is the main cost each of them?
3
votes
2answers
324 views

Are threads from multiple processes actually running at the same time

In a Windows operating system with 2 physical x86/amd64 processors (P0 + P1), running 2 processes (A + B), each with two threads (T0 + T1), is it possible (or even common) to see the following: ...
3
votes
3answers
864 views

How expensive is a context switch? Is it better to implement a manual task switch than to rely on OS threads?

The title says it all. Imagine I have two (three, four, whatever) tasks that have to run in parallel. Now, the easy way to do this would be to create separate threads and forget about it. But on a ...
3
votes
1answer
195 views

GCC: Force a function call after every instruction (for multithreaded testing)?

I'm trying to test a rather threading-sensitive area in my program and was wondering if there's a way to force gcc to insert a call after every instruction it emits so that I can manually yield to a ...
2
votes
3answers
70 views

Context switching in uC/OS (embedded systems)

I'd like to know if its possible to have an interrupt force the scheduler to switch context to a specific task in RTOS. I'm working with microCOS OS Here is the task which performs the keyscan and ...
2
votes
2answers
99 views

Trying to understand the relation between Thread.MemoryBarrier() and context switching

Since it appears that context switch may happen at any point in execution of instructions I am now wondering why code "in part in question" (those 2 instructions) makes sense, if context switch can ...
2
votes
1answer
423 views

Monitoring context switches in Linux

Is there any way to determine whenever a context switch takes place without the use of profilers? I have written a C program to monitor the time taken for different processes in a program to finish ...
2
votes
1answer
279 views

in linux kernel, the data structure thread_struct contains both field esp0 and esp, what is the difference?

This is my guess: esp0 is initialized with the kernel stack top addr. when the kernel stack is allocated, and it is used, during process switch, to initialize tss->esp0, so that when context switches ...
2
votes
1answer
781 views

Counting context switches per thread

Is there a way to see how many context switches each thread generates? (both in and out if possible) Either in X/s, or to let it run and give aggregated data after some time. (either on linux or on ...
1
vote
1answer
20 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, ...
1
vote
3answers
51 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 ...
1
vote
2answers
44 views

Does there have to be a mode switch for something to qualify as a context switch?

Does there have to be a mode switch ie. from user to kernel mode in order for the action to be called a context switch?
1
vote
2answers
145 views

Question on sigsetjmp and siglongjmp

I am trying to understand the sigsetjmp() and siglongjmp() functions. The man pages state that sigsetjmp() saves the context and siglongjmp() restores the context. My question is, will they take care ...
1
vote
3answers
76 views

Context-switch and thread execution on different CPU cores

From my another question on SO I found out that its possible that following simple method void B() { if (_complete) { Console.WriteLine (_answer); } } may be executed on ...
1
vote
1answer
341 views

How does zend view render resolve path to view script

How does an action like this "customSearchAction()" map to the view script file name. Neither of these file names work "customsearch.xml.phtml", "customSearch.xml.phtml", "custom-search.xml.phtml". ...
1
vote
1answer
527 views

Download files with zend contextSwitch() Action Helper

everybody. I'm stack with similar thing: i have to provide a download file capability with Zend Framework... Several hours of googling don't help me with this... So here is my Controller code (note: ...
1
vote
1answer
149 views

Zend ContextSwitch action helper for XML sets wrong Content-Type header

Zend default ContextSwitch Action Helper for XML wrongly sets the Content-Type header to "application/xml" while the documentation claims it sets it to "test/xml". Did anybody else bump into this. Is ...
1
vote
1answer
103 views

context switch during doubly linked list creation

There's an example in Maurice Bach's The Design of the Unix Operating System that mentions how it's possible for a doubly linked list to be destroyed due to a context switch during its creation. (He ...
1
vote
4answers
268 views

Forcing context switch in Windows

Is there a way to force a context switch in C++ to a specific thread, assuming I have the thread handle or thread ID?
1
vote
3answers
190 views

Thread Cooperation on Dual-CPU Machines

I remember in a course I took in college, one of my favorite examples of a race condition was one in which a simple main() method started two threads, one of which incremented a shared (global) ...
1
vote
1answer
207 views

How to get notification of a context switch in Windows (7)

For some RTOS's, there is some event, or even a callout function that is called when the kernel is switching into, or even switching out of a thread. In pSOS it was called the TaskSwitchCallout. In ...
1
vote
3answers
720 views

Context switch time - Role of RTOS and Processor

Does the RTOS play a major role or processor play a major role in determining the time for context switch ? What is the percentage of share between these two major players in determining the context ...
1
vote
4answers
701 views

Win32: Atomic Execution of Code Block

I have two system calls GetSystemTime() and GetThreadTimes() that I need to calculate the CPU utilization by a given Win32 thread. For the sake of accuracy, I need to ensure that both GetSystemTime() ...
0
votes
2answers
33 views

Windows - thread id change when a context switch happens

Do Thread Id's change when a context switch (due to any reason) happens?
0
votes
2answers
62 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?
0
votes
1answer
13 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 ...
0
votes
2answers
87 views

Which of the following involves context switch?

Which of the following involves context switch? A. System Call B. Privileged Instruction C. Both A & B D. None Of These
0
votes
1answer
77 views

How to write in kernel mode to some process's virtual memory

I want to use my unix module in order to write to another process memory (I would like to do it in kernel mode and avoid the pthread interface). i have to use function (like do_mmap(..), ...
0
votes
1answer
80 views

Trace context switches on Linux [closed]

Possible Duplicate: Monitoring pthread context switching I have a program where under certain scheduling layout some strange things happen (a number of threads which do sched_yield seem to ...
0
votes
1answer
79 views

windows driver development: context switch callback?

Is it possible for a driver to register a callback in the kernel for every context switch? thanks!
0
votes
0answers
114 views

Lowest context switch time [closed]

Which processor has the best context switch time ?
0
votes
5answers
770 views

C++ context switch and mutex problem

Ok.. here is some background on the issue. I have some 'critical' code that i'm trying to protect with a mutex. It goes something like this Mutex.Lock() // critical code // some file IO ...