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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [libcsupport/] [src/] [fchdir.c] - Blame information for rev 1778

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

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  fchdir() - compatible with SVr4, 4.4BSD and X/OPEN - Change Directory
3
 *
4
 *  COPYRIGHT (c) 1989-2000.
5
 *  On-Line Applications Research Corporation (OAR).
6
 *
7
 *  The license and distribution terms for this file may be
8
 *  found in the file LICENSE in this distribution or at
9
 *  http://www.OARcorp.com/rtems/license.html.
10
 *
11
 *  fchdir.c,v 1.5 2002/01/04 18:29:36 joel Exp
12
 */
13
 
14
#if HAVE_CONFIG_H
15
#include "config.h"
16
#endif
17
 
18
#include <unistd.h>
19
#include <sys/stat.h>
20
#include <errno.h>
21
 
22
#include <rtems.h>
23
#include <rtems/libio.h>
24
#include <rtems/libio_.h>
25
#include <rtems/seterr.h>
26
 
27
int fchdir(
28
  int       fd
29
)
30
{
31
  rtems_libio_t *iop;
32
 
33
  rtems_libio_check_fd( fd );
34
  iop = rtems_libio_iop( fd );
35
  rtems_libio_check_is_open(iop);
36
 
37
  /*
38
   *  Now process the fchmod().
39
   */
40
 
41
  rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ );
42
 
43
  /*
44
   * Verify you can change directory into this node.
45
   */
46
 
47
  if ( !iop->pathinfo.ops ) {
48
    rtems_set_errno_and_return_minus_one( ENOTSUP );
49
  }
50
 
51
  if ( !iop->pathinfo.ops->node_type_h ) {
52
    rtems_set_errno_and_return_minus_one( ENOTSUP );
53
  }
54
 
55
  if (  (*iop->pathinfo.ops->node_type_h)( &iop->pathinfo ) !=
56
                                          RTEMS_FILESYSTEM_DIRECTORY ) {
57
    rtems_set_errno_and_return_minus_one( ENOTDIR );
58
  }
59
 
60
  rtems_filesystem_freenode( &rtems_filesystem_current );
61
 
62
  /*
63
   * FIXME : I feel there should be another call to
64
   *         actually take into account the extra reference to
65
   *         this node which we are making here. I can
66
   *         see the freenode interface but do not see
67
   *         allocnode node interface. It maybe node_type.
68
   */
69
 
70
  rtems_filesystem_current = iop->pathinfo;
71
 
72
  return 0;
73
}
74
 

powered by: WebSVN 2.1.0

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