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 ccd1cdca5cd433c8a5dff78b69a79b31d9b77ee1 13 lines 258 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <linux/lockdep.h> 4 5void rust_helper_lockdep_register_key(struct lock_class_key *k) 6{ 7 lockdep_register_key(k); 8} 9 10void rust_helper_lockdep_unregister_key(struct lock_class_key *k) 11{ 12 lockdep_unregister_key(k); 13}