OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sched_lock
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/coregrind/m_scheduler/
sched-lock-generic.c
40
struct
sched_lock
{
struct
49
static struct
sched_lock
*create_sched_lock(void)
51
struct
sched_lock
*p;
53
p = VG_(malloc)("
sched_lock
", sizeof(*p));
58
static void destroy_sched_lock(struct
sched_lock
*p)
64
static int get_sched_lock_owner(struct
sched_lock
*p)
69
static void acquire_sched_lock(struct
sched_lock
*p)
74
static void release_sched_lock(struct
sched_lock
*p)
ticket-lock-linux.c
58
struct
sched_lock
{
struct
76
static struct
sched_lock
*create_sched_lock(void)
78
struct
sched_lock
*p;
80
p = VG_(malloc)("
sched_lock
", sizeof(*p));
92
static void destroy_sched_lock(struct
sched_lock
*p)
98
static int get_sched_lock_owner(struct
sched_lock
*p)
114
static void acquire_sched_lock(struct
sched_lock
*p)
158
static void release_sched_lock(struct
sched_lock
*p)
Completed in 539 milliseconds