mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 16:18:51 +07:00
285932a258
Adding support to detect jvmti support. It is not plugged into the FEATURE_TESTS machinery, because it's quite rare and will be used separately from perf via feature_check call. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Stephane Eranian <eranian@google.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: William Cohen <wcohen@redhat.com> Link: http://lkml.kernel.org/r/1478093749-5602-3-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
14 lines
307 B
C
14 lines
307 B
C
#include <jvmti.h>
|
|
#include <jvmticmlr.h>
|
|
|
|
int main(void)
|
|
{
|
|
JavaVM jvm __attribute__((unused));
|
|
jvmtiEventCallbacks cb __attribute__((unused));
|
|
jvmtiCapabilities caps __attribute__((unused));
|
|
jvmtiJlocationFormat format __attribute__((unused));
|
|
jvmtiEnv jvmti __attribute__((unused));
|
|
|
|
return 0;
|
|
}
|