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

Subversion Repositories or1k

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

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

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  symlink() - POSIX 1003.1b - X.X.X - XXX
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
 *  symlink.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 <rtems/libio_.h>
19
#include <rtems/seterr.h>
20
 
21
int symlink(
22
  const char *actualpath,
23
  const char *sympath
24
)
25
{
26
  rtems_filesystem_location_info_t    loc;
27
  int                                 i;
28
  const char                         *name_start;
29
  int                                 result;
30
 
31
  rtems_filesystem_get_start_loc( sympath, &i, &loc );
32
  result = (*loc.ops->evalformake_h)( &sympath[i], &loc, &name_start );
33
  if ( result != 0 )
34
    return -1;
35
 
36
  if ( !loc.ops->symlink_h ) {
37
    rtems_filesystem_freenode( &loc );
38
    rtems_set_errno_and_return_minus_one( ENOTSUP );
39
  }
40
 
41
  result = (*loc.ops->symlink_h)( &loc, actualpath, name_start);
42
 
43
  rtems_filesystem_freenode( &loc );
44
 
45
  return result;
46
}
47
 

powered by: WebSVN 2.1.0

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