brintos

brintos / linux-shallow public Read only

0
0
Text · 288 B · f936c8e Raw
12 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __PERF_DEMANGLE_JAVA3#define __PERF_DEMANGLE_JAVA 14/*5 * demangle function flags6 */7#define JAVA_DEMANGLE_NORET	0x1 /* do not process return type */8 9char * java_demangle_sym(const char *str, int flags);10 11#endif /* __PERF_DEMANGLE_JAVA */12