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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [reent/] [statr.c] - Diff between revs 1010 and 1765

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

Rev 1010 Rev 1765
/* Reentrant versions of stat system call.  This implementation just
/* Reentrant versions of stat system call.  This implementation just
   calls the stat system call.  */
   calls the stat 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
   targets should define REENTRANT_SYSCALLS_PROVIDED in
   TARGET_CFLAGS.  */
   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_stat_syscalls = 1;
int _dummy_stat_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
        <<_stat_r>>---Reentrant version of stat
        <<_stat_r>>---Reentrant version of stat
 
 
INDEX
INDEX
        _stat_r
        _stat_r
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _stat_r(struct _reent *<[ptr]>,
        int _stat_r(struct _reent *<[ptr]>,
                    const char *<[file]>, struct stat *<[pstat]>);
                    const char *<[file]>, struct stat *<[pstat]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _stat_r(<[ptr]>, <[file]>, <[pstat]>)
        int _stat_r(<[ptr]>, <[file]>, <[pstat]>)
        struct _reent *<[ptr]>;
        struct _reent *<[ptr]>;
        char *<[file]>;
        char *<[file]>;
        struct stat *<[pstat]>;
        struct stat *<[pstat]>;
 
 
DESCRIPTION
DESCRIPTION
        This is a reentrant version of <<stat>>.  It
        This is a reentrant version of <<stat>>.  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
_stat_r (ptr, file, pstat)
_stat_r (ptr, file, pstat)
     struct _reent *ptr;
     struct _reent *ptr;
     _CONST char *file;
     _CONST char *file;
     struct stat *pstat;
     struct stat *pstat;
{
{
  int ret;
  int ret;
 
 
  errno = 0;
  errno = 0;
  if ((ret = _stat (file, pstat)) == -1 && errno != 0)
  if ((ret = _stat (file, 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.