Jagger | d7c6ae6 | 2016-02-05 03:24:10 +0100 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * honggfuzz - Intel PT decoder |
| 4 | * ----------------------------------------- |
| 5 | * |
| 6 | * Author: Robert Swiecki <swiecki@google.com> |
| 7 | * |
| 8 | * Copyright 2010-2016 by Google Inc. All Rights Reserved. |
| 9 | * |
| 10 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 11 | * not use this file except in compliance with the License. You may obtain |
| 12 | * a copy of the License at |
| 13 | * |
| 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | * |
| 16 | * Unless required by applicable law or agreed to in writing, software |
| 17 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 19 | * implied. See the License for the specific language governing |
| 20 | * permissions and limitations under the License. |
| 21 | * |
| 22 | */ |
| 23 | |
Jagger | 876a74c | 2016-02-09 22:09:11 +0100 | [diff] [blame] | 24 | #ifndef _HF_LINUX_PT_H_ |
| 25 | #define _HF_LINUX_PT_H_ |
Jagger | d7c6ae6 | 2016-02-05 03:24:10 +0100 | [diff] [blame] | 26 | |
Robert Swiecki | 10eeb0a | 2017-09-28 15:42:52 +0200 | [diff] [blame] | 27 | #include "honggfuzz.h" |
Jagger | be3ff2b | 2016-02-07 19:51:44 +0100 | [diff] [blame] | 28 | |
Robert Swiecki | 78633d1 | 2017-11-13 23:24:55 +0100 | [diff] [blame] | 29 | extern void arch_ptAnalyze(run_t* run); |
Jagger | d7c6ae6 | 2016-02-05 03:24:10 +0100 | [diff] [blame] | 30 | |
Robert Swiecki | 4e595fb | 2017-10-11 17:26:51 +0200 | [diff] [blame] | 31 | #endif /* _HF_LINUX_INTEL_PT_LIB */ |