tsdbSma.h 1.3 KB
Newer Older
C
Cary Xu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TD_VNODE_TSDB_SMA_H_
#define _TD_VNODE_TSDB_SMA_H_

H
Hongze Cheng 已提交
19
#include "tsdb.h"
C
Cary Xu 已提交
20 21 22 23 24

#ifdef __cplusplus
extern "C" {
#endif

C
Cary Xu 已提交
25
// typedef int32_t (*__tb_ddl_fn_t)(void *ahandle, void **result, void *p1, void *p2);
C
Cary Xu 已提交
26

C
Cary Xu 已提交
27 28 29 30 31
// struct STbDdlH {
//   void         *ahandle;
//   void         *result;
//   __tb_ddl_fn_t fp;
// };
C
Cary Xu 已提交
32 33 34 35 36 37 38 39 40 41 42

static FORCE_INLINE int32_t tsdbUidStoreInit(STbUidStore **pStore) {
  ASSERT(*pStore == NULL);
  *pStore = taosMemoryCalloc(1, sizeof(STbUidStore));
  if (*pStore == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    return TSDB_CODE_FAILED;
  }
  return TSDB_CODE_SUCCESS;
}

C
Cary Xu 已提交
43 44 45 46 47
#ifdef __cplusplus
}
#endif

#endif /*_TD_VNODE_TSDB_SMA_H_*/