summaryrefslogblamecommitdiffstats
path: root/cpukit/libfs/src/dosfs/msdos_free.c
blob: a19983febe0b1278221029a39a9662a5a4d7376a (plain) (tree)
1
2
3
4
5
6
7
8

        
  




                                        




                                                           
                                         






                   
                         










                                   
   

                                                                     
 


                                                          
 
/**
 * @file
 *
 * @brief Call Fat-File Close Routine
 * @ingroup libfs_msdos MSDOS FileSystem
 */

/*
 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems.h>
#include <rtems/libio_.h>

#include <errno.h>

#include "fat.h"
#include "fat_fat_operations.h"
#include "fat_file.h"

#include "msdos.h"

/* msdos_free_node_info --
 *     Call fat-file close routine.
 */
void
msdos_free_node_info(const rtems_filesystem_location_info_t *pathloc)
{
    msdos_fs_info_t *fs_info = pathloc->mt_entry->fs_info;

    fat_file_close(&fs_info->fat, pathloc->node_access);
}