| 1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. | 
|---|---|
| 2 | // | 
| 3 | // SPDX-License-Identifier: GPL-3.0-or-later | 
| 4 | |
| 5 | #ifndef _REPLAY_H | 
| 6 | #define _REPLAY_H | 
| 7 | |
| 8 | int replay(const char* parent_dir, const char* trace_dir, int pid); | 
| 9 | int dump(const char* parent_dir, const char* trace_dir, int pid); | 
| 10 | int list_pid(const char* parent_dir, const char* trace_dir); | 
| 11 | |
| 12 | #endif // _REPLAY_H | 
| 13 | |
| 14 | 
