blob: e1c39c54e42565494dee6a774341b895966eaa8a [file] [log] [blame]
Jeff Brown053b8652012-06-06 16:25:03 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef _DEBUGGERD_TOMBSTONE_H
18#define _DEBUGGERD_TOMBSTONE_H
19
Jeff Brown053b8652012-06-06 16:25:03 -070020#include <stdbool.h>
Josh Gaoe7a9e522015-11-17 13:57:03 -080021#include <stddef.h>
Jeff Brown053b8652012-06-06 16:25:03 -070022#include <sys/types.h>
Josh Gao7c89f9e2016-01-13 17:57:14 -080023#include <set>
Josh Gaoe7a9e522015-11-17 13:57:03 -080024#include <string>
25
26class BacktraceMap;
27
28/* Create and open a tombstone file for writing.
29 * Returns a writable file descriptor, or -1 with errno set appropriately.
30 * If out_path is non-null, *out_path is set to the path of the tombstone file.
31 */
32int open_tombstone(std::string* path);
Jeff Brown053b8652012-06-06 16:25:03 -070033
Josh Gao7c89f9e2016-01-13 17:57:14 -080034/* Creates a tombstone file and writes the crash dump to it. */
35void engrave_tombstone(int tombstone_fd, BacktraceMap* map, pid_t pid, pid_t tid,
Josh Gaoa04c8022016-08-11 12:50:32 -070036 const std::set<pid_t>& siblings, uintptr_t abort_msg_address,
37 std::string* amfd_data);
Jeff Brown053b8652012-06-06 16:25:03 -070038
39#endif // _DEBUGGERD_TOMBSTONE_H