refact
This commit is contained in:
parent
79e5aeaa09
commit
4b5030dece
File diff suppressed because it is too large
Load Diff
|
@ -30,14 +30,14 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct SVnode {
|
struct SVnode {
|
||||||
char* path;
|
char* path;
|
||||||
SVnodeOptions options;
|
SVnodeOptions options;
|
||||||
SVState state;
|
SVState state;
|
||||||
SVAllocatorPool pool;
|
SVAllocatorPool* pool;
|
||||||
SMemAllocator* inuse;
|
SMemAllocator* inuse;
|
||||||
SMeta* pMeta;
|
SMeta* pMeta;
|
||||||
STsdb* pTsdb;
|
STsdb* pTsdb;
|
||||||
STQ* pTq;
|
STQ* pTq;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -13,5 +13,4 @@
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define _DEFAULT_SOURCE
|
#include "vnodeDef.h"
|
||||||
#include "vnodeRead.h"
|
|
Loading…
Reference in New Issue