-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
203 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
2024-06-02 Konstantin Kushnir <[email protected]> | ||
* Don't allow deleting pages/fsindex that are in use | ||
* Optimize c-readerchannel | ||
|
||
2024-06-01 Konstantin Kushnir <[email protected]> | ||
* Add in-memory vfs feature | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
/* (c) 2010 Wojciech Kocjan, Pawel Salawa */ | ||
|
||
#ifndef COOKFS_READERCHANNELIO_H | ||
#define COOKFS_READERCHANNELIO_H 1 | ||
|
||
#ifdef COOKFS_USECREADERCHAN | ||
int Cookfs_Readerchannel_Close(ClientData instanceData, Tcl_Interp *interp); | ||
int Cookfs_Readerchannel_Close2(ClientData instanceData, Tcl_Interp *interp, int flags); | ||
|
||
int Cookfs_Readerchannel_Gethandle(ClientData instanceData, int direction, ClientData *handlePtr); | ||
|
||
int Cookfs_Readerchannel_Input(ClientData instanceData, char *buf, int bufSize, int *errorCodePtr); | ||
int Cookfs_Readerchannel_Output(ClientData instanceData, const char *buf, int toWrite, int *errorCodePtr); | ||
|
||
int Cookfs_Readerchannel_Seek(ClientData instanceData, long offset, int seekMode, int *errorCodePtr); | ||
Tcl_WideInt Cookfs_Readerchannel_WideSeek(ClientData instanceData, Tcl_WideInt offset, int seekMode, int *errorCodePtr); | ||
|
||
void Cookfs_Readerchannel_Watch(ClientData instanceData, int mask); | ||
|
||
#endif /* COOKFS_USECREADERCHAN */ | ||
|
||
#endif /* COOKFS_READERCHANNELIO_H */ | ||
|
||
/* (c) 2010 Wojciech Kocjan, Pawel Salawa */ | ||
|
||
#ifndef COOKFS_READERCHANNELIO_H | ||
#define COOKFS_READERCHANNELIO_H 1 | ||
|
||
#ifdef COOKFS_USECREADERCHAN | ||
int Cookfs_Readerchannel_Close(ClientData instanceData, Tcl_Interp *interp); | ||
int Cookfs_Readerchannel_Close2(ClientData instanceData, Tcl_Interp *interp, int flags); | ||
|
||
int Cookfs_Readerchannel_Gethandle(ClientData instanceData, int direction, ClientData *handlePtr); | ||
|
||
int Cookfs_Readerchannel_Input(ClientData instanceData, char *buf, int bufSize, int *errorCodePtr); | ||
int Cookfs_Readerchannel_Output(ClientData instanceData, const char *buf, int toWrite, int *errorCodePtr); | ||
|
||
int Cookfs_Readerchannel_Seek(ClientData instanceData, long offset, int seekMode, int *errorCodePtr); | ||
Tcl_WideInt Cookfs_Readerchannel_WideSeek(ClientData instanceData, Tcl_WideInt offset, int seekMode, int *errorCodePtr); | ||
|
||
void Cookfs_Readerchannel_Watch(ClientData instanceData, int mask); | ||
|
||
Tcl_DriverThreadActionProc Cookfs_Readerchannel_ThreadAction; | ||
|
||
#endif /* COOKFS_USECREADERCHAN */ | ||
|
||
#endif /* COOKFS_READERCHANNELIO_H */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.