source: rtems/cpukit/libfs/src/defaults/default_mknod.c @ 6683a58

4.115
Last change on this file since 6683a58 was 6683a58, checked in by Jennifer Averett <Jennifer.Averett@…>, on 06/30/10 at 13:58:56

2010-06-30 Jennifer.Averett <Jennifer.Averett@…>

  • libcsupport/include/rtems/libio.h, libfs/Makefile.am: Added filesystem default mknod method.
  • libfs/src/defaults/default_mknod.c: New file.
  • Property mode set to 100644
File size: 670 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2010.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#include <rtems/libio.h>
13#include <rtems/libio_.h>
14#include <rtems/seterr.h>
15
16int rtems_filesystem_default_mknod(
17   const char                        *path,       /* IN */
18   mode_t                             mode,       /* IN */
19   dev_t                              dev,        /* IN */
20   rtems_filesystem_location_info_t  *pathloc     /* IN/OUT */
21)
22{
23  rtems_set_errno_and_return_minus_one( ENOTSUP );
24}
Note: See TracBrowser for help on using the repository browser.