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 6b8fb66877134d19067d5b4f5fe4e600262ba66c..48581c4623f5c257f15baf71ae1bfa833492ac7a 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 |
@@ -16,6 +16,7 @@ |
#include "nacl_io/ioctl.h" |
#include "nacl_io/kernel_handle.h" |
+#include "nacl_io/kernel_intercept.h" |
#include "nacl_io/mount.h" |
#include "nacl_io/pepper_interface.h" |
#include "sdk_util/auto_lock.h" |
@@ -262,7 +263,7 @@ Error MountNodeTty::VIoctl(int request, va_list args) { |
rows_ = size->ws_row; |
cols_ = size->ws_col; |
} |
- kill(getpid(), SIGWINCH); |
+ ki_kill(getpid(), SIGWINCH); |
{ |
// Wake up any thread waiting on Read with POLLERR then immediate |
// clear it to signal EINTR. |