mirror of
https://github.com/openharmony/startup_appspawn.git
synced 2026-08-26 20:14:02 -04:00
7b6bfd1bce
Signed-off-by: nianyuu <zhouwenqiang12@huawei.com>
37 lines
1.1 KiB
C++
Executable File
37 lines
1.1 KiB
C++
Executable File
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "appspawn_adapter.h"
|
|
|
|
#include "appspawn_utils.h"
|
|
|
|
#ifndef APPSPAWN_TEST
|
|
#include "dfx_dump_catcher.h"
|
|
#endif
|
|
|
|
void DumpSpawnStack(pid_t pid)
|
|
{
|
|
#ifndef APPSPAWN_TEST
|
|
OHOS::HiviewDFX::DfxDumpCatcher dumpLog;
|
|
std::string stackTrace;
|
|
bool ret = dumpLog.DumpCatch(pid, 0, stackTrace);
|
|
if (ret) {
|
|
APPSPAWN_LOGI("dumpCatch stackTrace for pid %{public}d success", pid);
|
|
} else {
|
|
APPSPAWN_LOGE("dumpCatch stackTrace for pid %{public}d failed", pid);
|
|
}
|
|
#endif
|
|
}
|