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

Side by Side Diff: native_client_sdk/src/libraries/nacl_io/mount_node_stream.cc

Issue 23498015: [NaCl SDK] Support non blocking TCP/UDP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge emitter changes 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "nacl_io/mount_node_stream.h"
6
7 #include <errno.h>
8 #include <fcntl.h>
9 #include <pthread.h>
10 #include <string.h>
11
12 #include "nacl_io/ioctl.h"
13
14
15 namespace nacl_io {
16
17 MountNodeStream::MountNodeStream(Mount* mnt)
18 : MountNode(mnt),
19 read_timeout_(-1),
20 write_timeout_(-1) {
21 }
22
23 Error MountNodeStream::Init(int perm) {
24 MountNode::Init(perm);
25 return 0;
26 }
27
28 } // namespace nacl_io
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698