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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [reent/] [fstatr.c] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/* Reentrant versions of fstat system call.  This implementation just
/* Reentrant versions of fstat system call.  This implementation just
   calls the fstat system call.  */
   calls the fstat system call.  */
 
 
#include <reent.h>
#include <reent.h>
#include <unistd.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/stat.h>
#include <_syslist.h>
#include <_syslist.h>
 
 
/* Some targets provides their own versions of these functions.  Those
/* Some targets provides their own versions of these functions.  Those
   targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS.  */
   targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS.  */
 
 
#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
 
 
#ifdef REENTRANT_SYSCALLS_PROVIDED
#ifdef REENTRANT_SYSCALLS_PROVIDED
 
 
int _dummy_fstat_syscalls = 1;
int _dummy_fstat_syscalls = 1;
 
 
#else
#else
 
 
/* 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
        <<_fstat_r>>---Reentrant version of fstat
        <<_fstat_r>>---Reentrant version of fstat
 
 
INDEX
INDEX
        _fstat_r
        _fstat_r
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _fstat_r(struct _reent *<[ptr]>,
        int _fstat_r(struct _reent *<[ptr]>,
                     int <[fd]>, struct stat *<[pstat]>);
                     int <[fd]>, struct stat *<[pstat]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _fstat_r(<[ptr]>, <[fd]>, <[pstat]>)
        int _fstat_r(<[ptr]>, <[fd]>, <[pstat]>)
        struct _reent *<[ptr]>;
        struct _reent *<[ptr]>;
        int <[fd]>;
        int <[fd]>;
        struct stat *<[pstat]>;
        struct stat *<[pstat]>;
 
 
DESCRIPTION
DESCRIPTION
        This is a reentrant version of <<fstat>>.  It
        This is a reentrant version of <<fstat>>.  It
        takes a pointer to the global data block, which holds
        takes a pointer to the global data block, which holds
        <<errno>>.
        <<errno>>.
*/
*/
 
 
int
int
_fstat_r (ptr, fd, pstat)
_fstat_r (ptr, fd, pstat)
     struct _reent *ptr;
     struct _reent *ptr;
     int fd;
     int fd;
     struct stat *pstat;
     struct stat *pstat;
{
{
  int ret;
  int ret;
 
 
  errno = 0;
  errno = 0;
  if ((ret = _fstat (fd, pstat)) == -1 && errno != 0)
  if ((ret = _fstat (fd, pstat)) == -1 && errno != 0)
    ptr->_errno = errno;
    ptr->_errno = errno;
  return ret;
  return ret;
}
}
 
 
#endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */
#endif /* ! defined (REENTRANT_SYSCALLS_PROVIDED) */
 
 

powered by: WebSVN 2.1.0

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