source: rtems/cpukit/libcsupport/src/ftruncate.c @ 50f32b11

4.104.114.84.95
Last change on this file since 50f32b11 was 50f32b11, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/18/04 at 06:05:35

Remove stray white spaces.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  ftruncate() - Truncate a File to the Specified Length
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.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <unistd.h>
19#include <errno.h>
20
21#include <rtems/libio_.h>
22#include <rtems/seterr.h>
23
24int ftruncate(
25  int     fd,
26  off_t   length
27)
28{
29  rtems_libio_t                    *iop;
30  rtems_filesystem_location_info_t  loc;
31
32  rtems_libio_check_fd( fd );
33  iop = rtems_libio_iop( fd );
34  rtems_libio_check_is_open(iop);
35
36  /*
37   *  Now process the ftruncate() request.
38   */
39
40  /*
41   *  Make sure we are not working on a directory
42   */
43
44  loc = iop->pathinfo;
45  if ( !loc.ops->node_type_h )
46    rtems_set_errno_and_return_minus_one( ENOTSUP );
47
48  if ( (*loc.ops->node_type_h)( &loc ) == RTEMS_FILESYSTEM_DIRECTORY )
49    rtems_set_errno_and_return_minus_one( EISDIR );
50
51  rtems_libio_check_permissions( iop, LIBIO_FLAGS_WRITE );
52
53  if ( !iop->handlers->ftruncate_h )
54    rtems_set_errno_and_return_minus_one( ENOTSUP );
55
56  return (*iop->handlers->ftruncate_h)( iop, length );
57}
Note: See TracBrowser for help on using the repository browser.