aboutsummaryrefslogtreecommitdiff
path: root/NOTES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'NOTES.txt')
-rw-r--r--NOTES.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/NOTES.txt b/NOTES.txt
index 1a4f2d2..da5ee7a 100644
--- a/NOTES.txt
+++ b/NOTES.txt
@@ -3,13 +3,13 @@ scratchpad for the development of iemnet
speed & syslocks
================
-one bottleneck right now is the synchronisation with Pd's
+one bottleneck right now is the synchronisation with Pd's
main thread to register a clock callback.
doing a sys_lock() whenever a package arrives will slow down things immensely.
alternatives:
no sys_lock(): will eventually crash Pd (no option)
- use sys_trylock(): this might eventually fail to notify Pd of newly arrived
+ use sys_trylock(): this might eventually fail to notify Pd of newly arrived
packets (bad for throughput)
external polling: no syslock needed at all, but more complicated
keep track of clock_callback: "notified" flag tells us, whether we have already
@@ -23,4 +23,4 @@ tests for tcpclient/server:
server disconnects -> client should get notified
client crashes -> server should disconnect
server crashes -> client should disconnect
-
+