summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/libraries/nacl_io
diff options
context:
space:
mode:
Diffstat (limited to 'native_client_sdk/src/libraries/nacl_io')
-rw-r--r--native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc2
-rw-r--r--native_client_sdk/src/libraries/nacl_io/node.h2
-rw-r--r--native_client_sdk/src/libraries/nacl_io/socket/socket_node.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc b/native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc
index d9d9567..c974f6b 100644
--- a/native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc
+++ b/native_client_sdk/src/libraries/nacl_io/kernel_proxy.cc
@@ -972,7 +972,7 @@ int KernelProxy::utimens(const char* path, const struct timespec times[2]) {
return FutimensInternal(node, times);
}
-// TODO(noelallen): Needs implementation.
+// TODO(bradnelson): Needs implementation.
int KernelProxy::link(const char* oldpath, const char* newpath) {
LOG_TRACE("link is not implemented.");
errno = EINVAL;
diff --git a/native_client_sdk/src/libraries/nacl_io/node.h b/native_client_sdk/src/libraries/nacl_io/node.h
index 54e6605..f1ebdc3c 100644
--- a/native_client_sdk/src/libraries/nacl_io/node.h
+++ b/native_client_sdk/src/libraries/nacl_io/node.h
@@ -140,7 +140,7 @@ class Node : public sdk_util::RefObject {
sdk_util::SimpleLock node_lock_;
// We use a pointer directly to avoid cycles in the ref count.
- // TODO(noelallen) We should change this so it's unnecessary for the node
+ // TODO(bradnelson) We should change this so it's unnecessary for the node
// to track it's parent. When a node is unlinked, the filesystem should do
// any cleanup it needs.
Filesystem* filesystem_;
diff --git a/native_client_sdk/src/libraries/nacl_io/socket/socket_node.cc b/native_client_sdk/src/libraries/nacl_io/socket/socket_node.cc
index 95cc4f3..4eaf6ac 100644
--- a/native_client_sdk/src/libraries/nacl_io/socket/socket_node.cc
+++ b/native_client_sdk/src/libraries/nacl_io/socket/socket_node.cc
@@ -364,7 +364,7 @@ Error SocketNode::RecvHelper(const HandleAttr& attr,
if ((flags & MSG_DONTWAIT) || !attr.IsBlocking())
ms = 0;
- // TODO(noelallen) BUG=295177
+ // TODO(bradnelson) BUG=295177
// For UDP we should support filtering packets when using connect
EventListenerLock wait(GetEventEmitter());
Error err = wait.WaitOnEvent(POLLIN, ms);