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 v6.16-rc2 20 lines 368 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2024 Meta Platforms, Inc. and affiliates. 4 * Copyright (c) 2024 David Vernet <dvernet@meta.com> 5 */ 6 7#ifndef __EXIT_TEST_H__ 8#define __EXIT_TEST_H__ 9 10enum exit_test_case { 11 EXIT_SELECT_CPU, 12 EXIT_ENQUEUE, 13 EXIT_DISPATCH, 14 EXIT_ENABLE, 15 EXIT_INIT_TASK, 16 EXIT_INIT, 17 NUM_EXITS, 18}; 19 20#endif // # __EXIT_TEST_H__