]> git.e2factory.org Git - e2factory.git/commitdiff
Disable write buffering on pipe file object
authorTobias Ulmer <tu@emlix.com>
Wed, 15 Jan 2014 18:30:13 +0000 (19:30 +0100)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:17 +0000 (15:41 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
generic/eio.lua

index 9e4f6e357d6dfb0437333bed5bc826d274a53c73..5b8c382fd09b457b4d7690f2d1e070d581323d87 100644 (file)
@@ -361,6 +361,7 @@ function eio.pipe()
     if not fw then
         return false, re
     end
+    eio.setunbuffered(fw)
 
     return fr, fw
 end