Implement (half) simple semaphore & mutex lock, and ...
[lunaix-os.git] / lunaix-os / includes / lunaix / tty / tty.h
index 3d723ca169a08853636145ba7c1f5f79c582a2cb..cbb39248a02564de6182aee1a27987cfa7db48b7 100644 (file)
@@ -40,5 +40,21 @@ tty_scroll_up();
 void
 tty_clear();
 
+void 
+tty_clear_line(unsigned int y);
+
+void
+tty_set_cpos(unsigned int x, unsigned int y);
+
+void
+tty_get_cpos(unsigned int* x, unsigned int* y);
+
+vga_attribute
+tty_get_theme();
+
+void tty_set_cursor(unsigned char x, unsigned char y);
+
+void tty_sync_cursor();
+
 
 #endif /* __LUNAIX_TTY_H */