Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Unified Diff: native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc

Issue 23498015: [NaCl SDK] Support non blocking TCP/UDP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove event friends, rename EventListenerPoll Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc
diff --git a/native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc b/native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc
index 534e53a28dac1605d6bea6ee82a1a8ff026d6163..dec2df73aa21d03c14692864d052dda7e252d76d 100644
--- a/native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc
+++ b/native_client_sdk/src/libraries/nacl_io/mount_node_tty.cc
@@ -224,7 +224,7 @@ Error MountNodeTty::ProcessInput(struct tioc_nacl_input_string* message) {
}
if (is_readable_) {
- RaiseEvent(POLLIN);
+// RaiseEvent(POLLIN);
binji 2013/09/12 01:47:57 Why removed? If necessary to remove, add TODO? Als
noelallen1 2013/09/12 23:19:03 Part of TTY CL.
pthread_cond_broadcast(&is_readable_cond_);
}

Powered by Google App Engine
This is Rietveld 408576698