summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_node.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-05-20Update company nameSebastian Huber1-1/+1
The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
2022-07-25imfs: Add <rtems/imfsimpl.h>Sebastian Huber1-1/+1
2022-03-22cpukit/libfs/src/imfs: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2020-04-28doxygen: Switch @brief and @ingroupSebastian Huber1-1/+2
This order change fixes the Latex documentation build via Doxygen.
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2020-03-09imfs: Use _IMFS_get_time()Sebastian Huber1-6/+5
Update #3894.
2020-03-04imfs: Add IMFS_add_node()Sebastian Huber1-5/+3
Update #3894.
2020-03-04imfs: Remove IMFS_NODE_FLAG_NAME_ALLOCATEDSebastian Huber1-4/+0
Remove IMFS_NODE_FLAG_NAME_ALLOCATED and instead replace the node control in rename operations. This avoids a special case in the general node destruction which pulled in free(). Update #3894.
2017-12-13IMFS: Include <rtems/imfs.h>Sebastian Huber1-1/+1
Prepare for header file move to common include directory. Update #3254.
2016-09-19imfs: Untangle dependenciesSebastian Huber1-0/+115
This helps to use IMFS_make_generic_node() without pulling in the complete IMFS implementation.