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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [libcsupport/] [src/] [rmdir.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
 *  rmdir() - POSIX 1003.1b - 5.2.2 - Remove a Directory
3
 *
4
 *  COPYRIGHT (c) 1989-1999.
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
 *  rmdir.c,v 1.9 2002/01/04 18:29:37 joel Exp
12
 */
13
 
14
#if HAVE_CONFIG_H
15
#include "config.h"
16
#endif
17
 
18
#include <sys/types.h>
19
#include <fcntl.h>
20
#include <unistd.h>
21
#include <errno.h>
22
#include <stdlib.h>
23
 
24
#include <rtems/libio_.h>
25
#include <rtems/seterr.h>
26
 
27
int rmdir(
28
  const char *pathname
29
)
30
{
31
  rtems_filesystem_location_info_t  loc;
32
  int                               result;
33
 
34
  /*
35
   *  Get the node where we wish to go.
36
   */
37
 
38
  result = rtems_filesystem_evaluate_path( pathname, 0, &loc, FALSE );
39
  if ( result != 0 )
40
     return -1;
41
 
42
  /*
43
   * Verify you can remove this node as a directory.
44
   */
45
 
46
  if ( !loc.ops->node_type_h ){
47
    rtems_filesystem_freenode( &loc );
48
    rtems_set_errno_and_return_minus_one( ENOTSUP );
49
  }
50
 
51
  if (  (*loc.ops->node_type_h)( &loc ) != RTEMS_FILESYSTEM_DIRECTORY ){
52
    rtems_filesystem_freenode( &loc );
53
    rtems_set_errno_and_return_minus_one( ENOTDIR );
54
  }
55
 
56
  /*
57
   * Use the filesystems rmnod to remove the node.
58
   */
59
 
60
  if ( !loc.handlers->rmnod_h ){
61
    rtems_filesystem_freenode( &loc );
62
    rtems_set_errno_and_return_minus_one( ENOTSUP );
63
  }
64
 
65
  result =  (*loc.handlers->rmnod_h)( &loc );
66
 
67
  rtems_filesystem_freenode( &loc );
68
 
69
  return result;
70
}

powered by: WebSVN 2.1.0

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