26 lines
1.3 KiB
C
26 lines
1.3 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#define TAOS_STDIO_CLOSE_DIR_ERROR "failed to close dir"
|
|
#define TAOS_STDIO_OPEN_DIR_ERROR "failed to open dir"
|
|
#define TAOS_METRIC_INCORRECT_TYPE "incorrect metric type"
|
|
#define TAOS_METRIC_INVALID_LABEL_NAME "invalid label name"
|
|
#define TAOS_PTHREAD_RWLOCK_DESTROY_ERROR "failed to destroy the pthread_rwlock_t*"
|
|
#define TAOS_PTHREAD_RWLOCK_INIT_ERROR "failed to initialize the pthread_rwlock_t*"
|
|
#define TAOS_PTHREAD_RWLOCK_LOCK_ERROR "failed to lock the pthread_rwlock_t*"
|
|
#define TAOS_PTHREAD_RWLOCK_UNLOCK_ERROR "failed to unlock the pthread_rwlock_t*"
|
|
#define TAOS_REGEX_REGCOMP_ERROR "failed to compile the regular expression"
|
|
#define TAOS_REGEX_REGEXEC_ERROR "failed to execute the regular expression"
|