aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-15 00:30:59 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-15 00:30:59 -0400
commit4b1768723e1233afede7346c688103d14391cb7a (patch)
tree995fd7c4f659faeaad462eda80d3901784849264
parentade25a1acb88784ea10542b8188005ff84c4fe69 (diff)
downloadpython-termcast-server-4b1768723e1233afede7346c688103d14391cb7a.tar.gz
python-termcast-server-4b1768723e1233afede7346c688103d14391cb7a.zip
note race condition
-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)