le_fs_linux.h

    1 //--------------------------------------------------------------------------------------------------
    2 /** @file fs_linux.h
    3  *
    4  * Linux-specific Legato File System inter-module include file.
    5  *
    6  * Inter-module interface definitions exported by the File System module to other
    7  * modules within the framework.
    8  *
    9  * The File System module is part of the @ref c_fs implementation.
    10  *
    11  * Copyright (C) Sierra Wireless Inc.
    12  */
    13 //--------------------------------------------------------------------------------------------------
    14 
    15 #ifndef LEGATO_FS_LINUX_H_INCLUDE_GUARD
    16 #define LEGATO_FS_LINUX_H_INCLUDE_GUARD
    17 
    18 //--------------------------------------------------------------------------------------------------
    19 /**
    20  * Maximum number of characters permitted for a file path.
    21  */
    22 //--------------------------------------------------------------------------------------------------
    23 #define LE_FS_PATH_MAX_LEN PATH_MAX
    24 
    25 
    26 #endif /* end LEGATO_FS_LINUX_H_INCLUDE_GUARD */