]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/scudo/scudo_interface_internal.h
Merge compiler-rt trunk r321017 to contrib/compiler-rt.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / scudo / scudo_interface_internal.h
1 //===-- scudo_interface_internal.h ------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// Private Scudo interface header.
11 ///
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SCUDO_INTERFACE_INTERNAL_H_
15 #define SCUDO_INTERFACE_INTERNAL_H_
16
17 extern "C" {
18 SANITIZER_INTERFACE_ATTRIBUTE
19 void __scudo_set_rss_limit(unsigned long LimitMb, int HardLimit);  // NOLINT
20 }  // extern "C"
21
22 #endif  // SCUDO_INTERFACE_INTERNAL_H_