Rename project from TinyDFS to MouseFS

- Renamed TinyDFS.h to MouseFS.h
- Updated all type names: TinyDFS -> MouseFS, TinyDFS_Entity -> MouseFS_Entity, TinyDFS_Result -> MouseFS_Result
- Updated all enum values: TINYDFS_RESULT_* -> MOUSEFS_RESULT_*
- Updated all function names: tinydfs_* -> mousefs_*
- Updated all variable names: tdfs -> mfs
- Updated references in all source files, headers, examples, and documentation
- Updated Makefile build targets: tinydfs_* -> mousefs_*
This commit is contained in:
Claude
2025-11-10 18:00:05 +00:00
parent debbd08ce6
commit 1a297989d4
9 changed files with 425 additions and 425 deletions
+2 -2
View File
@@ -10,7 +10,7 @@
#include <poll.h>
#endif
#include "TinyDFS.h"
#include "MouseFS.h"
#define MAX_PENDING_OPERATION 8
@@ -29,7 +29,7 @@ typedef struct {
} PendingOperation;
typedef struct {
TinyDFS *tdfs;
MouseFS *mfs;
int num_pending;
PendingOperation pending[MAX_PENDING_OPERATION];
} SimulationClient;