summaryrefslogtreecommitdiff
path: root/ulib.c
diff options
context:
space:
mode:
authorkaashoek <kaashoek>2006-07-06 21:47:22 +0000
committerkaashoek <kaashoek>2006-07-06 21:47:22 +0000
commit7837c71b32fc716101a859302e0349061416bd6e (patch)
tree57ec72178b980a3cd794b2f93bd021e08004368f /ulib.c
parentb22d898297a2496ba4cfd31d445769fbebc0a46d (diff)
downloadxv6-labs-7837c71b32fc716101a859302e0349061416bd6e.tar.gz
xv6-labs-7837c71b32fc716101a859302e0349061416bd6e.tar.bz2
xv6-labs-7837c71b32fc716101a859302e0349061416bd6e.zip
disable all interrupts when acquiring lock
user program that makes a blocking system call
Diffstat (limited to 'ulib.c')
-rw-r--r--ulib.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ulib.c b/ulib.c
index d99acdd..5061732 100644
--- a/ulib.c
+++ b/ulib.c
@@ -56,3 +56,11 @@ close(int fd)
asm("mov $8, %eax");
asm("int $48");
}
+
+int
+block(void)
+{
+ asm("mov $9, %eax");
+ asm("int $48");
+}
+