diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:07:41 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-09 15:07:41 +0000 |
commit | 2e3591e5d88e321aa26063dfa0d8f736240fb39f (patch) | |
tree | 1517ed2c06113b84380c2284e3d150307bc9be4d /pfinet | |
parent | ad5681237553ce3d1d73f5db17532822632c2722 (diff) |
Formerly system.h.~5~
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/asm/system.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pfinet/asm/system.h b/pfinet/asm/system.h index 4dfc74e7..bb51a6fb 100644 --- a/pfinet/asm/system.h +++ b/pfinet/asm/system.h @@ -46,4 +46,24 @@ sti () mutex_unlock (&global_interrupt_lock); } +/* In threads set aside to be interrupt threads, they call this + before doing any real work, thus putting us into "interrupt" + mode. */ +extern inline void +begin_interrupt () +{ + mutex_lock (&global_interrupt_lock); + /* Should we suspend the current "user thread"? */ +} + +/* And then this, at the end of the real work. */ +extern inline void +end_interrupt () +{ + mutex_unlock (&global_interrupt_lock); + /* Likewise a resumption? */ +} + + + #endif |