/* * Copyright (c) 2024 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. */ #ifndef UNSUPPORTED_API_H #define UNSUPPORTED_API_H #include #include #define LITEOS_A "liteos_a" #define LINUX "linux" static inline void unsupported_api(const char *func) { fprintf(stderr, "[ERR]Unsupported API %s\n", func); } static inline int unsupported_api_check(const char *osname) { #ifdef __LITEOS_A__ if (!strcmp(osname, LITEOS_A)) { return 1; } #elif !defined(__LITEOS__) if (!strcmp(osname, LINUX)) { return 1; } #endif return 0; } #define UNSUPPORTED_API_VOID(osname) \ if (unsupported_api_check(osname) > 0) { \ fprintf(stderr, "[ERR]Unsupported API %s\n", __FUNCTION__); \ } #endif