OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:preempt_disable_count
(Results
1 - 2
of
2
) sorted by null
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
preempt.h
8
/* This flag contains garbage if
preempt_disable_count
is 0. */
12
extern __thread int
preempt_disable_count
;
34
return
preempt_disable_count
;
55
BUG_ON(
preempt_disable_count
);
preempt.c
55
__thread int
preempt_disable_count
;
variable
59
BUG_ON(
preempt_disable_count
< 0 ||
preempt_disable_count
== INT_MAX);
61
if (
preempt_disable_count
++)
72
BUG_ON(
preempt_disable_count
< 1);
74
if (--
preempt_disable_count
)
Completed in 52 milliseconds