Home | History | Annotate | Download | only in nacl_io
      1 // Copyright (c) 2012 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 #ifndef LIBRARIES_NACL_IO_KERNEL_WRAP_REAL_H_
      6 #define LIBRARIES_NACL_IO_KERNEL_WRAP_REAL_H_
      7 
      8 #include "nacl_io/osstat.h"
      9 #include "nacl_io/ostypes.h"
     10 #include "sdk_util/macros.h"
     11 
     12 EXTERN_C_BEGIN
     13 
     14 int _real_close(int fd);
     15 int _real_fstat(int fd, struct stat *buf);
     16 int _real_getdents(int fd, void* nacl_buf, size_t nacl_count, size_t *nread);
     17 int _real_lseek(int fd, off_t offset, int whence, off_t* new_offset);
     18 int _real_mkdir(const char* pathname, mode_t mode);
     19 int _real_mmap(void** addr, size_t length, int prot, int flags, int fd,
     20                off_t offset);
     21 int _real_munmap(void* addr, size_t length);
     22 int _real_open(const char* pathname, int oflag, mode_t cmode, int* newfd);
     23 int _real_open_resource(const char* file, int* fd);
     24 int _real_read(int fd, void *buf, size_t count, size_t *nread);
     25 int _real_rmdir(const char* pathname);
     26 int _real_write(int fd, const void *buf, size_t count, size_t *nwrote);
     27 
     28 EXTERN_C_END
     29 
     30 #endif  // LIBRARIES_NACL_IO_KERNEL_WRAP_REAL_H_
     31