1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #if !defined(INCLUDED_DPS8_RT_H)
18 # define INCLUDED_DPS8_RT_H
19
20 # include <pthread.h>
21 # include <stdbool.h>
22
23 extern volatile time_t watchdog_timestamp;
24 extern volatile bool realtime_ok;
25
26 int restore_thread_sched(const pthread_t thread_id);
27 void save_thread_sched(const pthread_t thread_id);
28 void watchdog_recover(void);
29 int realtime_max_priority(void);
30 void set_realtime_priority(const pthread_t thread_id, const int priority);
31 void check_realtime_priority(const pthread_t thread_id, const int priority);
32 void check_not_realtime_priority(const pthread_t thread_id, const int priority);
33 void watchdog_startup(void);
34
35 #endif