Files
ark_js_runtime/ecmascript/shared_mm/shared_mm.h
T
wengchangcheng a4f9603e75 Descriptor: modify stream and add switch of enable_dump_in_faultlog
details:
1. call EndOfStream after WriteChunk
2. add switch of enable_dump_in_faultlog
issue: https://gitee.com/openharmony/ark_js_runtime/issues/I58KLM

Signed-off-by: wengchangcheng <wengchangcheng@huawei.com>
Change-Id: I1c9b26873eae47f8e9e5788cd7a477f32738efc9
2022-05-21 16:37:04 +08:00

51 lines
1.7 KiB
C++

/*
* 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.
*/
#ifndef ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H
#define ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H
#include "ecmascript/mem/c_containers.h"
#include "libpandabase/utils/logger.h"
#include "os/mutex.h"
namespace panda {
class EcmaVm;
namespace ecmascript {
class JSSharedMemoryManager {
public:
PUBLIC_API ~JSSharedMemoryManager();
static JSSharedMemoryManager *GetInstance()
{
static JSSharedMemoryManager jsSharedMemoryManager;
return &jsSharedMemoryManager;
}
void CreateOrLoad(void **pointer, size_t size);
static void RemoveSharedMemory(void *pointer, void *data);
private:
JSSharedMemoryManager() = default;
void InsertSharedMemory(const void *pointer);
void IncreaseRefSharedMemory(const void *pointer);
void DecreaseRefSharedMemory(const void *pointer);
void FreeBuffer(void *mem);
void *AllocateBuffer(size_t size);
os::memory::RecursiveMutex jsSharedMemoryLock_;
CMap<const uint64_t, int32_t> loadedJSSharedMemory_;
};
} // namespace ecmascript
} // namespace panda
#endif // ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H