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

Subversion Repositories or1k

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

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

Rev 1010 Rev 1765
/*
/*
FUNCTION
FUNCTION
<<fdopen>>---turn open file into a stream
<<fdopen>>---turn open file into a stream
 
 
INDEX
INDEX
        fdopen
        fdopen
INDEX
INDEX
        _fdopen_r
        _fdopen_r
 
 
ANSI_SYNOPSIS
ANSI_SYNOPSIS
        #include <stdio.h>
        #include <stdio.h>
        FILE *fdopen(int <[fd]>, const char *<[mode]>);
        FILE *fdopen(int <[fd]>, const char *<[mode]>);
        FILE *_fdopen_r(void *<[reent]>,
        FILE *_fdopen_r(void *<[reent]>,
                     int <[fd]>, const char *<[mode]>);
                     int <[fd]>, const char *<[mode]>);
 
 
TRAD_SYNOPSIS
TRAD_SYNOPSIS
        #include <stdio.h>
        #include <stdio.h>
        FILE *fdopen(<[fd]>, <[mode]>)
        FILE *fdopen(<[fd]>, <[mode]>)
        int <[fd]>;
        int <[fd]>;
        char *<[mode]>;
        char *<[mode]>;
 
 
        FILE *_fdopen_r(<[reent]>, <[fd]>, <[mode]>)
        FILE *_fdopen_r(<[reent]>, <[fd]>, <[mode]>)
        char *<[reent]>;
        char *<[reent]>;
        int <[fd]>;
        int <[fd]>;
        char *<[mode]>);
        char *<[mode]>);
 
 
DESCRIPTION
DESCRIPTION
<<fdopen>> produces a file descriptor of type <<FILE *>>, from a
<<fdopen>> produces a file descriptor of type <<FILE *>>, from a
descriptor for an already-open file (returned, for example, by the
descriptor for an already-open file (returned, for example, by the
system subroutine <<open>> rather than by <<fopen>>).
system subroutine <<open>> rather than by <<fopen>>).
The <[mode]> argument has the same meanings as in <<fopen>>.
The <[mode]> argument has the same meanings as in <<fopen>>.
 
 
RETURNS
RETURNS
File pointer or <<NULL>>, as for <<fopen>>.
File pointer or <<NULL>>, as for <<fopen>>.
 
 
PORTABILITY
PORTABILITY
<<fdopen>> is ANSI.
<<fdopen>> is ANSI.
*/
*/
 
 
#include <sys/types.h>
#include <sys/types.h>
#include <sys/fcntl.h>
#include <sys/fcntl.h>
 
 
#include <stdio.h>
#include <stdio.h>
#include <errno.h>
#include <errno.h>
#include "local.h"
#include "local.h"
#include <_syslist.h>
#include <_syslist.h>
 
 
extern int __sflags ();
extern int __sflags ();
 
 
FILE *
FILE *
_DEFUN (_fdopen_r, (ptr, fd, mode),
_DEFUN (_fdopen_r, (ptr, fd, mode),
        struct _reent *ptr _AND
        struct _reent *ptr _AND
        int fd _AND
        int fd _AND
        _CONST char *mode)
        _CONST char *mode)
{
{
  register FILE *fp;
  register FILE *fp;
  int flags, oflags;
  int flags, oflags;
#ifdef HAVE_FCNTL
#ifdef HAVE_FCNTL
  int fdflags, fdmode;
  int fdflags, fdmode;
#endif
#endif
 
 
  if ((flags = __sflags (ptr, mode, &oflags)) == 0)
  if ((flags = __sflags (ptr, mode, &oflags)) == 0)
    return 0;
    return 0;
 
 
  /* make sure the mode the user wants is a subset of the actual mode */
  /* make sure the mode the user wants is a subset of the actual mode */
#ifdef HAVE_FCNTL
#ifdef HAVE_FCNTL
  if ((fdflags = _fcntl (fd, F_GETFL, 0)) < 0)
  if ((fdflags = _fcntl (fd, F_GETFL, 0)) < 0)
    return 0;
    return 0;
  fdmode = fdflags & O_ACCMODE;
  fdmode = fdflags & O_ACCMODE;
  if (fdmode != O_RDWR && (fdmode != (oflags & O_ACCMODE)))
  if (fdmode != O_RDWR && (fdmode != (oflags & O_ACCMODE)))
    {
    {
      ptr->_errno = EBADF;
      ptr->_errno = EBADF;
      return 0;
      return 0;
    }
    }
#endif
#endif
 
 
  if ((fp = __sfp (ptr)) == 0)
  if ((fp = __sfp (ptr)) == 0)
    return 0;
    return 0;
  fp->_flags = flags;
  fp->_flags = flags;
  /*
  /*
   * If opened for appending, but underlying descriptor
   * If opened for appending, but underlying descriptor
   * does not have O_APPEND bit set, assert __SAPP so that
   * does not have O_APPEND bit set, assert __SAPP so that
   * __swrite() will lseek to end before each write.
   * __swrite() will lseek to end before each write.
   */
   */
  if ((oflags & O_APPEND)
  if ((oflags & O_APPEND)
#ifdef HAVE_FCNTL
#ifdef HAVE_FCNTL
       && !(fdflags & O_APPEND)
       && !(fdflags & O_APPEND)
#endif
#endif
      )
      )
    fp->_flags |= __SAPP;
    fp->_flags |= __SAPP;
  fp->_file = fd;
  fp->_file = fd;
  fp->_cookie = (_PTR) fp;
  fp->_cookie = (_PTR) fp;
 
 
#undef _read
#undef _read
#undef _write
#undef _write
#undef _seek
#undef _seek
#undef _close
#undef _close
 
 
  fp->_read = __sread;
  fp->_read = __sread;
  fp->_write = __swrite;
  fp->_write = __swrite;
  fp->_seek = __sseek;
  fp->_seek = __sseek;
  fp->_close = __sclose;
  fp->_close = __sclose;
 
 
#ifdef __SCLE
#ifdef __SCLE
  /* Explicit given mode results in explicit setting mode on fd */
  /* Explicit given mode results in explicit setting mode on fd */
  if (oflags & O_BINARY)
  if (oflags & O_BINARY)
    setmode(fp->_file, O_BINARY);
    setmode(fp->_file, O_BINARY);
  else if (oflags & O_TEXT)
  else if (oflags & O_TEXT)
    setmode(fp->_file, O_TEXT);
    setmode(fp->_file, O_TEXT);
  if (__stextmode(fp->_file))
  if (__stextmode(fp->_file))
    fp->_flags |= __SCLE;
    fp->_flags |= __SCLE;
#endif
#endif
 
 
  return fp;
  return fp;
}
}
 
 
#ifndef _REENT_ONLY
#ifndef _REENT_ONLY
 
 
FILE *
FILE *
_DEFUN (fdopen, (fd, mode),
_DEFUN (fdopen, (fd, mode),
        int fd _AND
        int fd _AND
        _CONST char *mode)
        _CONST char *mode)
{
{
  return _fdopen_r (_REENT, fd, mode);
  return _fdopen_r (_REENT, fd, mode);
}
}
 
 
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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