Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 16 lines 240 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#if defined(__x86_64__) 4 5/* 6 * Include usdt.h with default nop,nop5 instructions combo. 7 */ 8#include "usdt.h" 9 10__attribute__((aligned(16))) 11void usdt_2(void) 12{ 13 USDT(optimized_attach, usdt_2); 14} 15 16#endif