0
votes
5answers
49 views
What form is DLL & what makes it processor dependant
I know DLL contains one or more exported functions that are compiled, linked, and stored separately..
My question is about not about how to create it.. but it is all about in what …
2
votes
4answers
194 views
How do we determine if a processor is 8-bit; 16-bit or 32-bit
Is it determined by size of the address buss; if yes then was 8086 a 20-bit processor? If no what is criteria for assigning a bit number like 8-bit, 16-bit, 32-bit to processor?
2
votes
7answers
1k views
How to set processor affinity on an executable in Windows XP?
I have a quad core system with third party application that once in a while spins several processes (always the same executable but several instances of it) and takes 100% of CPU t …
2
votes
6answers
316 views
Java thread running on which processor?
Is there a way to find out which processor (either on a single system or mutliple systems) your thread is running on, using Java native threads? If not, is there any library which …
2
votes
2answers
47 views
Determine at runtime if Windows CE operating system is built against a particular processor type (eg. ARMV4/ARMV4I/ARMV4T)
Is there a way to determine if a Windows CE operating system is targeted against ARMV4 or ARMV4I or ARMV4T.
I am aware of the IsProcessorFeaturePresent() API call on coredll howev …
4
votes
5answers
130 views
what is difference between Superscaling and pipelining ?
Well looks too simple a question to be asked but i asked after going through few ppts on both.
Both methods increase instruction throughput. And Superscaling almost always makes u …
2
votes
5answers
221 views
Detect system architecture (x86/x64) while running
Is it possible to detect the system/processor architecture while the program is running (under windows and under linux) in c++?
0
votes
3answers
24 views
mips assembly question
does anyone know how the CPU determines which register should receive the result produced by an instruction?
anyone???
2
votes
6answers
229 views
What is the best way for interprocessor communication in Linux?
I have two CPUs on the chip and they have a shared memory. This is not a SMP architecture. Just two CPUs on the chip with shared memory.
There is a Unix-like operating system on t …
0
votes
2answers
126 views
.NET Framework get running processor architecture
There is an enum of all supported processor architectures here: http://msdn.microsoft.com/en-us/library/system.reflection.processorarchitecture.aspx
Is there any way to determine …
0
votes
6answers
555 views
How you disable the processor cache on a PowerPC processor?
In our embedded system (using a PowerPC processor), we want to disable the processor cache. What steps do we need to take?
To clarify a bit, the application in question must have …
1
vote
1answer
234 views
how to set CPU affinity of a particular pthread?
Hi,
I'd like to specify the cpu-affinity of a particular pthread. All the references I've found so far deal with setting the cpu-affinity of a process (pid_t) not a thread (pthrea …
2
votes
4answers
216 views
How to get the number of processors on a 64-bit machine?
How can I find the number CPUs on 64 bit window 2003 servers? The answers in this thread did not work. Using Win32_ComputerSystem.NumberOfProcessors returns none.
I would prefer …
0
votes
1answer
34 views
Processor Utilization by threads spawned by a program
I have a java program which spawns multiple threads say, 10-20 threads. This program is scheduled to be run on a machine that has 32 processors.
I am keen to know if all the proce …
2
votes
9answers
260 views
How can I create an executable to run on a certain processor architecture (instead of certain OS)?
(I will admit this question is out of curiousity, I don't really need to do this :D )
So I take my C++ program in Visual studio, compile, and it'll spit out a nice little .EXE fil …
