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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [reent/] [openr.c] - Blame information for rev 40

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 39 lampret
/* Reentrant versions of open system call. */
2
 
3
#include <reent.h>
4
#include <unistd.h>
5
#include <_syslist.h>
6
 
7
/* Some targets provides their own versions of this functions.  Those
8
   targets should define REENTRANT_SYSCALLS_PROVIDED in TARGET_CFLAGS.  */
9
 
10
#ifdef _REENT_ONLY
11
#ifndef REENTRANT_SYSCALLS_PROVIDED
12
#define REENTRANT_SYSCALLS_PROVIDED
13
#endif
14
#endif
15
 
16
#ifndef REENTRANT_SYSCALLS_PROVIDED
17
 
18
/* We use the errno variable used by the system dependent layer.  */
19
#undef errno
20
extern int errno;
21
 
22
/*
23
FUNCTION
24
        <<_open_r>>---Reentrant version of open
25
 
26
INDEX
27
        _open_r
28
 
29
ANSI_SYNOPSIS
30
        #include <reent.h>
31
        int _open_r(struct _reent *<[ptr]>,
32
                    const char *<[file]>, int <[flags]>, int <[mode]>);
33
 
34
TRAD_SYNOPSIS
35
        #include <reent.h>
36
        int _open_r(<[ptr]>, <[file]>, <[flags]>, <[mode]>)
37
        struct _reent *<[ptr]>;
38
        char *<[file]>;
39
        int <[flags]>;
40
        int <[mode]>;
41
 
42
DESCRIPTION
43
        This is a reentrant version of <<open>>.  It
44
        takes a pointer to the global data block, which holds
45
        <<errno>>.
46
*/
47
 
48
int
49
_open_r (ptr, file, flags, mode)
50
     struct _reent *ptr;
51
     _CONST char *file;
52
     int flags;
53
     int mode;
54
{
55
  int ret;
56
 
57
  errno = 0;
58
  if ((ret = _open (file, flags, mode)) == -1 && errno != 0)
59
    ptr->_errno = errno;
60
  return ret;
61
}
62
 
63
 
64
#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.