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 v5.7 10 lines 288 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# description: Kprobe dynamic event - adding and removing 4 5[ -f kprobe_events ] || exit_unsupported # this is configurable 6 7echo p:myevent _do_fork > kprobe_events 8grep myevent kprobe_events 9test -d events/kprobes/myevent 10echo > kprobe_events