blob: 12920d08d0bb3adbcc15f2bd2c121687ebdfeddd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// 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.started) {
*exit_code = 0;
return TERMINATION_STATUS_LAUNCH_FAILED;
}
if (!process_info.exited) {
*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
|