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

Subversion Repositories or1k

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

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

Rev 1010 Rev 1765
/* Reentrant versions of file system calls.  These implementations
/* Reentrant versions of file system calls.  These implementations
   just call the usual system calls.  */
   just call the usual system calls.  */
 
 
#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 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
 
 
#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
        <<_unlink_r>>---Reentrant version of unlink
        <<_unlink_r>>---Reentrant version of unlink
 
 
INDEX
INDEX
        _unlink_r
        _unlink_r
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _unlink_r(struct _reent *<[ptr]>, const char *<[file]>);
        int _unlink_r(struct _reent *<[ptr]>, const char *<[file]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <reent.h>
        #include <reent.h>
        int _unlink_r(<[ptr]>, <[file]>)
        int _unlink_r(<[ptr]>, <[file]>)
        struct _reent *<[ptr]>;
        struct _reent *<[ptr]>;
        char *<[file]>;
        char *<[file]>;
 
 
DESCRIPTION
DESCRIPTION
        This is a reentrant version of <<unlink>>.  It
        This is a reentrant version of <<unlink>>.  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
_unlink_r (ptr, file)
_unlink_r (ptr, file)
     struct _reent *ptr;
     struct _reent *ptr;
     _CONST char *file;
     _CONST char *file;
{
{
  int ret;
  int ret;
 
 
  errno = 0;
  errno = 0;
  if ((ret = _unlink (file)) == -1 && errno != 0)
  if ((ret = _unlink (file)) == -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.