schedulerInt.h 14.1 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * 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_SCHEDULER_INT_H_
#define _TD_SCHEDULER_INT_H_

#ifdef __cplusplus
extern "C" {
#endif

23 24 25 26
#include "os.h"
#include "tarray.h"
#include "planner.h"
#include "scheduler.h"
27
#include "thash.h"
D
dapan1121 已提交
28
#include "trpc.h"
D
dapan1121 已提交
29
#include "command.h"
30

D
dapan1121 已提交
31 32
#define SCHEDULE_DEFAULT_MAX_JOB_NUM 1000
#define SCHEDULE_DEFAULT_MAX_TASK_NUM 1000
D
dapan1121 已提交
33
#define SCHEDULE_DEFAULT_MAX_NODE_TABLE_NUM 200  // unit is TSDB_TABLE_NUM_UNIT
34

D
dapan1121 已提交
35 36 37 38
#define SCH_DEFAULT_TASK_TIMEOUT_USEC 10000000
#define SCH_MAX_TASK_TIMEOUT_USEC 60000000

#define SCH_TASK_MAX_EXEC_TIMES 5
39
#define SCH_MAX_CANDIDATE_EP_NUM TSDB_MAX_REPLICA
D
dapan 已提交
40

D
dapan1121 已提交
41 42 43 44 45
enum {
  SCH_READ = 1,
  SCH_WRITE,
};

D
dapan1121 已提交
46 47 48 49 50
enum {
  SCH_EXEC_CB = 1,
  SCH_FETCH_CB,
};

D
dapan1121 已提交
51
typedef struct SSchTrans {
D
dapan1121 已提交
52 53
  void *pTrans;
  void *pHandle;
D
dapan1121 已提交
54 55
} SSchTrans;

D
dapan1121 已提交
56 57
typedef struct SSchHbTrans {
  SRWLatch  lock;
D
dapan1121 已提交
58
  int64_t   taskNum;
D
dapan1121 已提交
59
  SRpcCtx   rpcCtx;
D
dapan1121 已提交
60 61 62
  SSchTrans trans;
} SSchHbTrans;

D
dapan1121 已提交
63 64
typedef struct SSchApiStat {

wafwerar's avatar
wafwerar 已提交
65 66 67 68
#ifdef WINDOWS
  size_t avoidCompilationErrors;
#endif

D
dapan1121 已提交
69 70 71 72
} SSchApiStat;

typedef struct SSchRuntimeStat {

wafwerar's avatar
wafwerar 已提交
73 74 75 76
#ifdef WINDOWS
  size_t avoidCompilationErrors;
#endif

D
dapan1121 已提交
77 78 79 80
} SSchRuntimeStat;

typedef struct SSchJobStat {

wafwerar's avatar
wafwerar 已提交
81 82 83 84
#ifdef WINDOWS
  size_t avoidCompilationErrors;
#endif

D
dapan1121 已提交
85 86
} SSchJobStat;

D
dapan1121 已提交
87
typedef struct SSchStat {
D
dapan1121 已提交
88 89 90
  SSchApiStat      api;
  SSchRuntimeStat  runtime;
  SSchJobStat      job;
D
dapan1121 已提交
91
} SSchStat;
D
dapan1121 已提交
92

D
dapan1121 已提交
93
typedef struct SSchResInfo {
D
dapan1121 已提交
94 95 96 97 98
  SQueryResult*          queryRes;
  void**                 fetchRes;
  schedulerExecCallback  execFp; 
  schedulerFetchCallback fetchFp; 
  void*                  userParam;
D
dapan1121 已提交
99
} SSchResInfo;
D
dapan1121 已提交
100

101
typedef struct SSchedulerMgmt {
D
dapan1121 已提交
102 103 104
  uint64_t        taskId; // sequential taksId
  uint64_t        sId;    // schedulerId
  SSchedulerCfg   cfg;
D
dapan1121 已提交
105
  SRWLatch        lock;
D
dapan1121 已提交
106
  bool            exit;
D
dapan1121 已提交
107
  int32_t         jobRef;
D
dapan1121 已提交
108
  int32_t         jobNum;
D
dapan1121 已提交
109
  SSchStat        stat;
D
dapan1121 已提交
110
  SHashObj       *hbConnections;
111
} SSchedulerMgmt;
112

D
dapan1121 已提交
113 114 115 116 117 118 119 120 121
typedef struct SSchCallbackParamHeader {
  bool isHbParam;
} SSchCallbackParamHeader;

typedef struct SSchTaskCallbackParam {
  SSchCallbackParamHeader head;
  uint64_t                queryId;
  int64_t                 refId;
  uint64_t                taskId;
D
dapan1121 已提交
122 123
  int32_t                 execIdx;
  void                   *pTrans;
D
dapan1121 已提交
124 125 126 127 128
} SSchTaskCallbackParam;

typedef struct SSchHbCallbackParam {
  SSchCallbackParamHeader head;
  SQueryNodeEpId          nodeEpId;
D
dapan1121 已提交
129
  void                   *pTrans;
D
dapan1121 已提交
130
} SSchHbCallbackParam;
D
dapan1121 已提交
131

D
dapan1121 已提交
132 133
typedef struct SSchFlowControl {
  SRWLatch  lock;
D
dapan1121 已提交
134
  bool      sorted;
D
dapan 已提交
135
  int32_t   tableNumSum;
D
dapan1121 已提交
136
  uint32_t  execTaskNum;
D
dapan1121 已提交
137
  SArray   *taskList;      // Element is SSchTask*
D
dapan1121 已提交
138 139
} SSchFlowControl;

D
dapan1121 已提交
140 141 142 143 144
typedef struct SSchNodeInfo {
  SQueryNodeAddr addr;
  void          *handle;
} SSchNodeInfo;

D
dapan 已提交
145
typedef struct SSchLevel {
D
dapan1121 已提交
146 147 148 149 150 151 152
  int32_t         level;
  int8_t          status;
  SRWLatch        lock;
  int32_t         taskFailed;
  int32_t         taskSucceed;
  int32_t         taskNum;
  int32_t         taskLaunchedNum;
D
dapan1121 已提交
153
  int32_t         taskDoneNum;
D
dapan1121 已提交
154
  SArray         *subTasks;      // Element is SQueryTask
D
dapan 已提交
155
} SSchLevel;
D
dapan1121 已提交
156

D
dapan1121 已提交
157 158 159 160 161 162 163
typedef struct SSchTaskProfile {
  int64_t startTs;
  int64_t execUseTime[SCH_TASK_MAX_EXEC_TIMES];
  int64_t waitTime;
  int64_t endTs;
} SSchTaskProfile;

D
dapan 已提交
164
typedef struct SSchTask {
D
dapan1121 已提交
165
  uint64_t             taskId;         // task id
D
dapan1121 已提交
166
  int32_t              execIdx;        // task current execute try index
D
dapan1121 已提交
167
  SRWLatch             lock;           // task lock
D
dapan1121 已提交
168 169 170 171 172
  SSchLevel           *level;          // level
  SSubplan            *plan;           // subplan
  char                *msg;            // operator tree
  int32_t              msgLen;         // msg length
  int8_t               status;         // task status
D
dapan1121 已提交
173
  int32_t              lastMsgType;    // last sent msg type
D
dapan1121 已提交
174
  int64_t              timeoutUsec;    // taks timeout useconds before reschedule
D
dapan1121 已提交
175
  SQueryNodeAddr       succeedAddr;    // task executed success node address
176 177
  int8_t               candidateIdx;   // current try condidation index
  SArray              *candidateAddrs; // condidate node addresses, element is SQueryNodeAddr
D
dapan1121 已提交
178 179
  SHashObj            *execNodes;      // all tried node for current task, element is SSchNodeInfo
  SSchTaskProfile      profile;        // task execution profile
D
dapan1121 已提交
180 181 182
  int32_t              childReady;     // child task ready number
  SArray              *children;       // the datasource tasks,from which to fetch the result, element is SQueryTask*
  SArray              *parents;        // the data destination tasks, get data from current task, element is SQueryTask*
D
dapan1121 已提交
183 184
  void*                handle;         // task send handle 
  bool                 registerdHb;    // registered in hb
D
dapan 已提交
185
} SSchTask;
D
dapan1121 已提交
186

D
dapan 已提交
187
typedef struct SSchJobAttr {
D
dapan1121 已提交
188 189 190 191
  EExplainMode explainMode;
  bool         syncSchedule;
  bool         queryJob;
  bool         needFlowCtrl;
D
dapan 已提交
192
} SSchJobAttr;
D
dapan1121 已提交
193

D
dapan 已提交
194
typedef struct SSchJob {
D
dapan1121 已提交
195
  int64_t          refId;
196
  uint64_t         queryId;
D
dapan1121 已提交
197
  SSchJobAttr      attr;
198
  int32_t          levelNum;
D
dapan1121 已提交
199
  int32_t          taskNum;
D
dapan1121 已提交
200
  void            *pTrans;
D
dapan1121 已提交
201 202
  SArray          *nodeList;   // qnode/vnode list, SArray<SQueryNodeAddr>
  SArray          *levels;    // starting from 0. SArray<SSchLevel>
X
Xiaoyu Wang 已提交
203
  SNodeList       *subPlans;  // subplan pointer copied from DAG, no need to free it in scheduler
D
dapan1121 已提交
204

D
dapan1121 已提交
205
  SArray          *dataSrcTasks; // SArray<SQueryTask*>
206
  int32_t          levelIdx;
D
dapan1121 已提交
207
  SEpSet           dataSrcEps;
D
dapan1121 已提交
208 209 210
  SHashObj        *execTasks; // executing tasks, key:taskid, value:SQueryTask*
  SHashObj        *succTasks; // succeed tasks, key:taskid, value:SQueryTask*
  SHashObj        *failTasks; // failed tasks, key:taskid, value:SQueryTask*
D
dapan1121 已提交
211
  SHashObj        *flowCtrl;  // key is ep, element is SSchFlowControl
D
dapan1121 已提交
212

D
dapan1121 已提交
213
  SExplainCtx     *explainCtx;
D
dapan1121 已提交
214
  int8_t           status;  
D
dapan1121 已提交
215
  SQueryNodeAddr   resNode;
D
dapan 已提交
216
  tsem_t           rspSem;
D
dapan1121 已提交
217
  int8_t           userFetch;
D
dapan 已提交
218
  int32_t          remoteFetch;
D
dapan1121 已提交
219
  SSchTask        *fetchTask;
D
dapan 已提交
220
  int32_t          errCode;
D
dapan 已提交
221
  SRWLatch         resLock;
D
dapan1121 已提交
222
  SQueryExecRes    execRes;
D
dapan1121 已提交
223
  void            *resData;         //TODO free it or not
D
dapan1121 已提交
224
  int32_t          resNumOfRows;
D
dapan1121 已提交
225
  SSchResInfo      userRes;
226
  const char      *sql;
D
dapan1121 已提交
227
  int32_t          userCb;
228
  SQueryProfileSummary summary;
D
dapan 已提交
229
} SSchJob;
D
dapan1121 已提交
230

D
dapan1121 已提交
231 232
extern SSchedulerMgmt schMgmt;

D
dapan1121 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
#define SCH_LOG_TASK_START_TS(_task)                      \
  do {                                                    \
    int64_t us = taosGetTimestampUs();                    \
    (_task)->profile.tryUseTime[(_task)->execIdx] = us;    \
    if (0 == (_task)->execIdx) {                           \
      (_task)->profile.startTs = us;                      \
    }                                                     \
  } while (0)  

#define SCH_LOG_TASK_END_TS(_task)                        \
  do {                                                    \
    int64_t us = taosGetTimestampUs();                    \
    (_task)->profile.tryUseTime[(_task)->execIdx] = us - (_task)->profile.tryUseTime[(_task)->execIdx];    \
    (_task)->profile.endTs = us;                          \
  } while (0)  

#define SCH_TASK_TIMEOUT(_task) ((taosGetTimestampUs() - (_task)->profile.tryUseTime[(_task)->execIdx]) > (_taks)->timeoutUsec)

D
dapan1121 已提交
251
#define SCH_TASK_READY_FOR_LAUNCH(readyNum, task) ((readyNum) >= taosArrayGetSize((task)->children))
D
dapan1121 已提交
252

D
dapan1121 已提交
253 254 255 256
#define SCH_TASK_ID(_task) ((_task) ? (_task)->taskId : -1)
#define SCH_SET_TASK_LASTMSG_TYPE(_task, _type) do { if(_task) { atomic_store_32(&(_task)->lastMsgType, _type); } } while (0)
#define SCH_GET_TASK_LASTMSG_TYPE(_task) ((_task) ? atomic_load_32(&(_task)->lastMsgType) : -1)

D
dapan1121 已提交
257 258 259
#define SCH_IS_DATA_SRC_QRY_TASK(task) ((task)->plan->subplanType == SUBPLAN_TYPE_SCAN)
#define SCH_IS_DATA_SRC_TASK(task) (((task)->plan->subplanType == SUBPLAN_TYPE_SCAN) || ((task)->plan->subplanType == SUBPLAN_TYPE_MODIFY))
#define SCH_IS_LEAF_TASK(_job, _task) (((_task)->level->level + 1) == (_job)->levelNum)
260

H
Haojun Liao 已提交
261
#define SCH_SET_TASK_STATUS(task, st) atomic_store_8(&(task)->status, st)
D
dapan1121 已提交
262
#define SCH_GET_TASK_STATUS(task) atomic_load_8(&(task)->status)
D
dapan1121 已提交
263 264
#define SCH_GET_TASK_STATUS_STR(task) jobTaskStatusStr(SCH_GET_TASK_STATUS(task))

D
dapan1121 已提交
265 266
#define SCH_GET_TASK_HANDLE(_task) ((_task) ? (_task)->handle : NULL)
#define SCH_SET_TASK_HANDLE(_task, _handle) ((_task)->handle = (_handle))
D
dapan1121 已提交
267

H
Haojun Liao 已提交
268
#define SCH_SET_JOB_STATUS(job, st) atomic_store_8(&(job)->status, st)
D
dapan1121 已提交
269
#define SCH_GET_JOB_STATUS(job) atomic_load_8(&(job)->status)
D
dapan1121 已提交
270
#define SCH_GET_JOB_STATUS_STR(job) jobTaskStatusStr(SCH_GET_JOB_STATUS(job))
D
dapan1121 已提交
271

D
dapan1121 已提交
272 273
#define SCH_SET_JOB_NEED_FLOW_CTRL(_job) (_job)->attr.needFlowCtrl = true
#define SCH_JOB_NEED_FLOW_CTRL(_job) ((_job)->attr.needFlowCtrl)
D
dapan1121 已提交
274
#define SCH_TASK_NEED_FLOW_CTRL(_job, _task) (SCH_IS_DATA_SRC_QRY_TASK(_task) && SCH_JOB_NEED_FLOW_CTRL(_job) && SCH_IS_LEVEL_UNFINISHED((_task)->level))
D
dapan1121 已提交
275 276 277 278

#define SCH_SET_JOB_TYPE(_job, type) (_job)->attr.queryJob = ((type) != SUBPLAN_TYPE_MODIFY)
#define SCH_IS_QUERY_JOB(_job) ((_job)->attr.queryJob) 
#define SCH_JOB_NEED_FETCH(_job) SCH_IS_QUERY_JOB(_job)
D
dapan1121 已提交
279 280
#define SCH_IS_WAIT_ALL_JOB(_job) (!SCH_IS_QUERY_JOB(_job))
#define SCH_IS_NEED_DROP_JOB(_job) (SCH_IS_QUERY_JOB(_job))
D
dapan1121 已提交
281
#define SCH_IS_EXPLAIN_JOB(_job) (EXPLAIN_MODE_ANALYZE == (_job)->attr.explainMode)
D
dapan1121 已提交
282

D
dapan1121 已提交
283
#define SCH_IS_LEVEL_UNFINISHED(_level) ((_level)->taskLaunchedNum < (_level)->taskNum)
X
Xiaoyu Wang 已提交
284 285
#define SCH_GET_CUR_EP(_addr) (&(_addr)->epSet.eps[(_addr)->epSet.inUse])
#define SCH_SWITCH_EPSET(_addr) ((_addr)->epSet.inUse = ((_addr)->epSet.inUse + 1) % (_addr)->epSet.numOfEps)
D
dapan1121 已提交
286
#define SCH_TASK_NUM_OF_EPS(_addr) ((_addr)->epSet.numOfEps)
D
dapan1121 已提交
287

H
Haojun Liao 已提交
288 289
#define SCH_JOB_ELOG(param, ...) qError("QID:0x%" PRIx64 " " param, pJob->queryId, __VA_ARGS__)
#define SCH_JOB_DLOG(param, ...) qDebug("QID:0x%" PRIx64 " " param, pJob->queryId, __VA_ARGS__)
S
Shengliang Guan 已提交
290 291

#define SCH_TASK_ELOG(param, ...) \
D
dapan1121 已提交
292
  qError("QID:0x%" PRIx64 ",TID:0x%" PRIx64 " " param, pJob->queryId, SCH_TASK_ID(pTask), __VA_ARGS__)
S
Shengliang Guan 已提交
293
#define SCH_TASK_DLOG(param, ...) \
D
dapan1121 已提交
294
  qDebug("QID:0x%" PRIx64 ",TID:0x%" PRIx64 " " param, pJob->queryId, SCH_TASK_ID(pTask), __VA_ARGS__)
D
dapan1121 已提交
295
#define SCH_TASK_DLOGL(param, ...) \
D
dapan1121 已提交
296
  qDebugL("QID:0x%" PRIx64 ",TID:0x%" PRIx64 " " param, pJob->queryId, SCH_TASK_ID(pTask), __VA_ARGS__)
S
Shengliang Guan 已提交
297
#define SCH_TASK_WLOG(param, ...) \
D
dapan1121 已提交
298
  qWarn("QID:0x%" PRIx64 ",TID:0x%" PRIx64 " " param, pJob->queryId, SCH_TASK_ID(pTask), __VA_ARGS__)
D
dapan1121 已提交
299 300 301 302

#define SCH_ERR_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; return _code; } } while (0)
#define SCH_RET(c) do { int32_t _code = c; if (_code != TSDB_CODE_SUCCESS) { terrno = _code; } return _code; } while (0)
#define SCH_ERR_JRET(c) do { code = c; if (code != TSDB_CODE_SUCCESS) { terrno = code; goto _return; } } while (0)
303

D
dapan1121 已提交
304 305 306
#define SCH_LOCK(type, _lock) (SCH_READ == (type) ? taosRLockLatch(_lock) : taosWLockLatch(_lock))
#define SCH_UNLOCK(type, _lock) (SCH_READ == (type) ? taosRUnLockLatch(_lock) : taosWUnLockLatch(_lock))

307

D
dapan1121 已提交
308 309
int32_t schLaunchTask(SSchJob *job, SSchTask *task);
int32_t schBuildAndSendMsg(SSchJob *job, SSchTask *task, SQueryNodeAddr *addr, int32_t msgType);
D
dapan1121 已提交
310 311
SSchJob *schAcquireJob(int64_t refId);
int32_t schReleaseJob(int64_t refId);
D
dapan1121 已提交
312
void schFreeFlowCtrl(SSchJob *pJob);
D
dapan1121 已提交
313
int32_t schChkJobNeedFlowCtrl(SSchJob *pJob, SSchLevel *pLevel);
D
dapan1121 已提交
314 315 316 317 318
int32_t schDecTaskFlowQuota(SSchJob *pJob, SSchTask *pTask);
int32_t schCheckIncTaskFlowQuota(SSchJob *pJob, SSchTask *pTask, bool *enough);
int32_t schLaunchTasksInFlowCtrlList(SSchJob *pJob, SSchTask *pTask);
int32_t schLaunchTaskImpl(SSchJob *pJob, SSchTask *pTask);
int32_t schFetchFromRemote(SSchJob *pJob);
D
dapan1121 已提交
319
int32_t schProcessOnTaskFailure(SSchJob *pJob, SSchTask *pTask, int32_t errCode);
D
dapan1121 已提交
320
int32_t schBuildAndSendHbMsg(SQueryNodeEpId *nodeEpId, SArray* taskAction);
D
dapan1121 已提交
321
int32_t schCloneSMsgSendInfo(void *src, void **dst);
D
dapan1121 已提交
322 323
int32_t schValidateAndBuildJob(SQueryPlan *pDag, SSchJob *pJob);
void schFreeJobImpl(void *job);
D
dapan1121 已提交
324 325 326 327 328 329 330 331 332
int32_t schMakeHbCallbackParam(SSchJob *pJob, SSchTask *pTask, void **pParam);
int32_t schMakeHbRpcCtx(SSchJob *pJob, SSchTask *pTask, SRpcCtx *pCtx);
int32_t schEnsureHbConnection(SSchJob *pJob, SSchTask *pTask);
int32_t schUpdateHbConnection(SQueryNodeEpId *epId, SSchTrans *trans);
int32_t schHandleHbCallback(void *param, const SDataBuf *pMsg, int32_t code);
void schFreeRpcCtx(SRpcCtx *pCtx);
int32_t schGetCallbackFp(int32_t msgType, __async_send_cb_fn_t *fp);
bool schJobNeedToStop(SSchJob *pJob, int8_t *pStatus);
int32_t schProcessOnTaskSuccess(SSchJob *pJob, SSchTask *pTask);
D
dapan1121 已提交
333
int32_t schSaveJobQueryRes(SSchJob *pJob, SQueryTableRsp *rsp);
D
dapan1121 已提交
334 335
int32_t schProcessOnExplainDone(SSchJob *pJob, SSchTask *pTask, SRetrieveTableRsp *pRsp);
void schProcessOnDataFetched(SSchJob *job);
336
int32_t schGetTaskInJob(SSchJob *pJob, uint64_t taskId, SSchTask **pTask);
D
dapan1121 已提交
337 338
void schFreeRpcCtxVal(const void *arg);
int32_t schMakeBrokenLinkVal(SSchJob *pJob, SSchTask *pTask, SRpcBrokenlinkVal *brokenVal, bool isHb);
D
dapan1121 已提交
339
int32_t schAppendTaskExecNode(SSchJob *pJob, SSchTask *pTask, SQueryNodeAddr *addr, int32_t execIdx);
D
dapan1121 已提交
340 341 342 343
int32_t schExecStaticExplainJob(void *pTrans, SArray *pNodeList, SQueryPlan *pDag, int64_t *job, const char *sql,
                             SSchResInfo *pRes, bool sync);
int32_t schExecJobImpl(void *pTrans, SArray *pNodeList, SQueryPlan *pDag, int64_t *job, const char *sql,
                              SSchResInfo *pRes, int64_t startTs, bool sync);
D
dapan1121 已提交
344 345 346 347 348
int32_t schChkUpdateJobStatus(SSchJob *pJob, int8_t newStatus);
int32_t schCancelJob(SSchJob *pJob);
int32_t schProcessOnJobDropped(SSchJob *pJob, int32_t errCode);
uint64_t schGenTaskId(void);
void schCloseJobRef(void);
349 350
int32_t schExecJob(void *pTrans, SArray *pNodeList, SQueryPlan *pDag, int64_t *pJob, const char *sql, int64_t startTs, SSchResInfo *pRes);
int32_t schAsyncExecJob(void *pTrans, SArray *pNodeList, SQueryPlan *pDag, int64_t *pJob, const char *sql, int64_t startTs, SSchResInfo *pRes);
D
dapan1121 已提交
351 352
int32_t schFetchRows(SSchJob *pJob);
int32_t schAsyncFetchRows(SSchJob *pJob);
D
dapan1121 已提交
353
int32_t schUpdateTaskHandle(SSchJob *pJob, SSchTask *pTask, int32_t msgType, void *handle, int32_t execIdx);
D
dapan1121 已提交
354

D
dapan 已提交
355

H
refact  
Hongze Cheng 已提交
356 357 358 359
#ifdef __cplusplus
}
#endif

D
dapan1121 已提交
360
#endif /*_TD_SCHEDULER_INT_H_*/