aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vt100.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/vt100.py b/vt100.py
index 97c345d..de7c045 100644
--- a/vt100.py
+++ b/vt100.py
@@ -62,6 +62,7 @@ vt100_cell_at = cell_at_prototype(("vt100_screen_cell_at", libvt100))
delete_prototype = CFUNCTYPE(None, c_void_p)
vt100_delete = delete_prototype(("vt100_screen_delete", libvt100))
+# XXX process/cell need mutexes
class vt100(object):
def __init__(self, rows, cols):
self.vt = vt100_new(rows, cols)