blob: 5f2d2398261cb4ac85fb0b350af0699781504c9f [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 Gaoe7a9e522015-11-17 13:57:03 -080023#include <string>
24
25class BacktraceMap;
26
27/* Create and open a tombstone file for writing.
28 * Returns a writable file descriptor, or -1 with errno set appropriately.
29 * If out_path is non-null, *out_path is set to the path of the tombstone file.
30 */
31int open_tombstone(std::string* path);
Jeff Brown053b8652012-06-06 16:25:03 -070032
Jeff Brown053b8652012-06-06 16:25:03 -070033/* Creates a tombstone file and writes the crash dump to it.
34 * Returns the path of the tombstone, which must be freed using free(). */
Josh Gaoe7a9e522015-11-17 13:57:03 -080035void engrave_tombstone(int tombstone_fd, BacktraceMap* map, pid_t pid, pid_t tid, int signal,
36 int original_si_code, uintptr_t abort_msg_address, bool dump_sibling_threads,
37 bool* detach_failed, int* total_sleep_time_usec);
Jeff Brown053b8652012-06-06 16:25:03 -070038
39#endif // _DEBUGGERD_TOMBSTONE_H