Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /usr/src/linux-headers-6.14.0-1012-aws/include/trace/events/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Tracepoints for `samples/rust/rust_print.rs`. * * Copyright (C) 2024 Google, Inc. */ #undef TRACE_SYSTEM #define TRACE_SYSTEM rust_sample #if !defined(_RUST_SAMPLE_TRACE_H) || defined(TRACE_HEADER_MULTI_READ) #define _RUST_SAMPLE_TRACE_H #include <linux/tracepoint.h> TRACE_EVENT(rust_sample_loaded, TP_PROTO(int magic_number), TP_ARGS(magic_number), TP_STRUCT__entry( __field(int, magic_number) ), TP_fast_assign( __entry->magic_number = magic_number; ), TP_printk("magic=%d", __entry->magic_number) ); #endif /* _RUST_SAMPLE_TRACE_H */ /* This part must be outside protection */ #include <trace/define_trace.h>