This commit is contained in:
Hongze Cheng 2021-11-09 13:37:11 +08:00
parent 79e5aeaa09
commit 4b5030dece
3 changed files with 2588 additions and 10 deletions

2579
docs/Doxyfile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -30,14 +30,14 @@ extern "C" {
#endif
struct SVnode {
char* path;
SVnodeOptions options;
SVState state;
SVAllocatorPool pool;
SMemAllocator* inuse;
SMeta* pMeta;
STsdb* pTsdb;
STQ* pTq;
char* path;
SVnodeOptions options;
SVState state;
SVAllocatorPool* pool;
SMemAllocator* inuse;
SMeta* pMeta;
STsdb* pTsdb;
STQ* pTq;
};
#ifdef __cplusplus

View File

@ -13,5 +13,4 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define _DEFAULT_SOURCE
#include "vnodeRead.h"
#include "vnodeDef.h"