Add putbuf().
[pintos-anon] / src / lib / kernel / console.c
index 803b46b393dca80c9773e165bdcf8715c2a67de5..149f29c7eb46f07e12c6af8744d8669e25b0340c 100644 (file)
@@ -59,6 +59,20 @@ puts (const char *s)
   return 0;
 }
 
+/* Writes the N characters in BUFFER to the console. */
+void
+putbuf (const char *buffer, size_t n) 
+{
+  if (!intr_context ())
+    lock_acquire (&console_lock);
+
+  while (n-- > 0)
+    putchar_unlocked (*buffer++);
+
+  if (!intr_context ())
+    lock_release (&console_lock);
+}
+
 /* Writes C to the vga display and serial port. */
 int
 putchar (int c)