-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtell_landslide.c
24 lines (22 loc) · 991 Bytes
/
tell_landslide.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @file tell_landslide.c
* @brief Specification for pebbles kernels to tell landslide about themselves.
* @author Ben Blum <[email protected]>
*/
#include "tell_landslide.h"
void tell_landslide_preempt(void) { }
void tell_landslide_thread_switch(int new_tid) { }
void tell_landslide_sched_init_done(void) { }
void tell_landslide_forking(void) { }
void tell_landslide_vanishing(void) { }
void tell_landslide_sleeping(void) { }
void tell_landslide_thread_on_rq(int tid) { }
void tell_landslide_thread_off_rq(int tid) { }
void tell_landslide_mutex_locking(void *mutex_addr) { }
void tell_landslide_mutex_blocking(int owner_tid) { }
void tell_landslide_mutex_locking_done(void *mutex_addr) { }
void tell_landslide_mutex_trylocking(void *mutex_addr) { }
void tell_landslide_mutex_trylocking_done(void *mutex_addr, int succeeded) { }
void tell_landslide_mutex_unlocking(void *mutex_addr) { }
void tell_landslide_mutex_unlocking_done(void) { }
void tell_landslide_dump_stack(void) { }