/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "xcollie.h" #include #include "xcollie_inner.h" #include "xcollie_utils.h" namespace OHOS { namespace HiviewDFX { XCollie::XCollie() { } XCollie::~XCollie() { } void XCollie::RegisterXCollieChecker(const sptr &checker, unsigned int type) { return XCollieInner::GetInstance().RegisterXCollieChecker(checker, type); } int XCollie::SetTimer(const std::string &name, unsigned int timeout, std::function func, void *arg, unsigned int flag) { return XCollieInner::GetInstance().SetTimer(name, timeout, func, arg, flag); } void XCollie::CancelTimer(int id) { return XCollieInner::GetInstance().CancelTimer(id); } bool XCollie::UpdateTimer(int id, unsigned int timeout) { return XCollieInner::GetInstance().UpdateTimer(id, timeout); } } // end of namespace HiviewDFX } // end of namespace OHOS