repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mkfs: move directory entry manipulation
[minix.git]
/
kernel
/
arch
/
i386
/
io_intr.S
blob
492d8f3016a2cf831ed19d928d89af767307cf03
1
/* intr_disable(), intr_enable - Disable/Enable hardware interrupts. */
2
/* Author: Kees J. Bot */
3
/* 18 Mar 1996 */
4
/* void intr_disable(void); */
5
/* void intr_enable(void); */
6
#include <machine/asm.h>
7
8
ENTRY(intr_disable)
9
cli
10
ret
11
12
ENTRY(intr_enable)
13
sti
14
ret