vote up 2 vote down star
1

Hello!

Is it possible to disable all interrupts with a ASM/C/C++ program to get full control about the processor?

If yes -> how?

If not -> how do "atomic" operation system calls work (for example entering a critical section)?

Sorry for my English! Thanks for your help!

flag
2  
You need to state which processor you're using. And which OS if any. On modern desktop/server operating system, userland code usually runs in an unprivileged mode preventing you from doing this. – nos Oct 6 at 18:39
Which processor? Which OS? – Mark Ransom Oct 6 at 18:39
MS Windows (XP SP2/SP3, Vista, 7) x86 and x64 versions, modern intel processors (e.g. Intel Core 2 Duo) – someone Oct 7 at 14:34

2 Answers

vote up 0 vote down

In x86 assembly the the commands are

  • sti set interrupt disable bit
  • cli clear interrupt disable bit

These commands set and clear the IF Flag. They don't work in unprivileged mode (usually everything higher than ring 0, depending on IOPL) though.

link|flag
vote up 1 vote down

on x86 and most other modern processors you can get atomic instructions. Ones that are GURANTEED not to be finished executing before another thread/processor can access that memory.

Under Win32 you have the Interlocked* functions that abstract that from you on supported platforms.

On a MIPS a lot of instruction can have a .I added to the end of the instruction to guarantee interlocking.

link|flag
On a x86 you can prefix certain instructions with "lock" to make them atomic. – drhirsch Oct 7 at 12:15
Ahh thanks :) It had to be something like that :) – Goz Oct 7 at 14:17
can you give me a source-code example please? – someone Oct 7 at 14:35
For what platform? If its for windows then msdn.microsoft.com/en-us/library/… – Goz Oct 7 at 15:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.