OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [reent/] [lseek64r.c] - Diff between revs 148 and 158

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 148 Rev 158
/* Reentrant versions of lseek system call. */
/* Reentrant versions of lseek system call. */
 
 
#include <reent.h>
#include <reent.h>
#include <unistd.h>
#include <unistd.h>
#include <_syslist.h>
#include <_syslist.h>
 
 
/* Some targets provides their own versions of this functions.  Those
/* Some targets provides their own versions of this functions.  Those
   targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS.  */
   targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS.  */
 
 
#ifdef __LARGE64_FILES
#ifdef __LARGE64_FILES
 
 
#ifdef _REENT_ONLY
#ifdef _REENT_ONLY
#ifndef REENTRANT_SYSCALLS_PROVIDED
#ifndef REENTRANT_SYSCALLS_PROVIDED
#define REENTRANT_SYSCALLS_PROVIDED
#define REENTRANT_SYSCALLS_PROVIDED
#endif
#endif
#endif
#endif
 
 
#ifndef REENTRANT_SYSCALLS_PROVIDED
#ifndef REENTRANT_SYSCALLS_PROVIDED
 
 
/* We use the errno variable used by the system dependent layer.  */
/* We use the errno variable used by the system dependent layer.  */
#undef errno
#undef errno
extern int errno;
extern int errno;
 
 
/*
/*
FUNCTION
FUNCTION
        <<_lseek64_r>>---Reentrant version of lseek
        <<_lseek64_r>>---Reentrant version of lseek
 
 
INDEX
INDEX
        _lseek64_r
        _lseek64_r
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        off64_t _lseek64_r(struct _reent *<[ptr]>,
        off64_t _lseek64_r(struct _reent *<[ptr]>,
                           int <[fd]>, off64_t <[pos]>, int <[whence]>);
                           int <[fd]>, off64_t <[pos]>, int <[whence]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        off64_t _lseek64_r(<[ptr]>, <[fd]>, <[pos]>, <[whence]>)
        off64_t _lseek64_r(<[ptr]>, <[fd]>, <[pos]>, <[whence]>)
        struct _reent *<[ptr]>;
        struct _reent *<[ptr]>;
        int <[fd]>;
        int <[fd]>;
        off64_t <[pos]>;
        off64_t <[pos]>;
        int <[whence]>;
        int <[whence]>;
 
 
DESCRIPTION
DESCRIPTION
        This is a reentrant version of <<lseek64>>.  It
        This is a reentrant version of <<lseek64>>.  It
        takes a pointer to the global data block, which holds
        takes a pointer to the global data block, which holds
        <<errno>>.  This function only exists on a system
        <<errno>>.  This function only exists on a system
        with large file support.
        with large file support.
*/
*/
 
 
_off64_t
_off64_t
_DEFUN (_lseek64_r, (ptr, fd, pos, whence),
_DEFUN (_lseek64_r, (ptr, fd, pos, whence),
     struct _reent *ptr _AND
     struct _reent *ptr _AND
     int fd _AND
     int fd _AND
     _off64_t pos _AND
     _off64_t pos _AND
     int whence)
     int whence)
{
{
  _off64_t ret;
  _off64_t ret;
 
 
  errno = 0;
  errno = 0;
  if ((ret = _lseek64 (fd, pos, whence)) == (_off64_t) -1 && errno != 0)
  if ((ret = _lseek64 (fd, pos, whence)) == (_off64_t) -1 && errno != 0)
    ptr->_errno = errno;
    ptr->_errno = errno;
  return ret;
  return ret;
}
}
 
 
#endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */
#endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */
 
 
#endif /* __LARGE64_FILES */
#endif /* __LARGE64_FILES */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.