bobobobo
bobobobo

Reputation: 67224

How do I "schedule an interrupt" on win32/intel architecture?

I'd like to figure out how to schedule a real ISR on normal win32 architecture (not Windows CE!)

Is it possible?

Upvotes: 0

Views: 275

Answers (1)

Nick
Nick

Reputation: 109

What do you mean by schedule? You can hook a Hardware interrupt (and you should save and call the old hook in most cases); you can trigger a HW interrupt manually - but there consequences when handling those; you can hook one of the timer int's, and implement a scheduling mechanism, but AFAIK you can't "schedule an ISR".

Upvotes: 1

Related Questions