blob: 56fb4c4be01bdb7d31e0fc6ef4f35f634223d6dd [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/process/kill.h"
#include <zircon/syscalls.h>
#include "base/logging.h"
#include "base/process/process_iterator.h"
#include "base/task/post_task.h"
#include "base/threading/platform_thread.h"
namespace base {
TerminationStatus GetTerminationStatus(ProcessHandle handle, int* exit_code) {
DCHECK(exit_code);
zx_info_process_t process_info;
zx_status_t status =
zx_object_get_info(handle, ZX_INFO_PROCESS, &process_info,
sizeof(process_info), nullptr, nullptr);
if (status != ZX_OK) {
DLOG(ERROR) << "unable to get termination status for " << handle;
*exit_code = 0;
return TERMINATION_STATUS_NORMAL_TERMINATION;
}
if ((process_info.flags & ZX_INFO_PROCESS_FLAG_STARTED) == 0) {
*exit_code = 0;
return TERMINATION_STATUS_LAUNCH_FAILED;
}
if ((process_info.flags & ZX_INFO_PROCESS_FLAG_EXITED) == 0) {
*exit_code = 0;
return TERMINATION_STATUS_STILL_RUNNING;
}
// TODO(crbug.com/1133865): Is there more information about types of crashes,
// OOM, etc. available?
*exit_code = process_info.return_code;
return process_info.return_code == 0
? TERMINATION_STATUS_NORMAL_TERMINATION
: TERMINATION_STATUS_ABNORMAL_TERMINATION;
}
} // namespace base