/* * Copyright (c) 2022 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 "ecmascript/platform/os.h" #include #include #include namespace panda::ecmascript { size_t MallocUsableSize(void *ptr) { return _msize(ptr); } uint32_t NumberOfCpuCore() { SYSTEM_INFO info; GetSystemInfo(&info); return info.dwNumberOfProcessors; } size_t PhysicalSize() { MEMORYSTATUSEX status; status.dwLength = sizeof(MEMORYSTATUSEX); GlobalMemoryStatusEx(&status); DWORDLONG physSize = status.ullTotalPhys; return physSize; } int PrctlSetVMA([[maybe_unused]] const void *ptr, [[maybe_unused]] const size_t size, [[maybe_unused]] const char *tag) { return -1; } long PtracePeektext([[maybe_unused]] int pid, [[maybe_unused]] uintptr_t addr) { return static_cast(-1); } } // namespace panda::ecmascript