File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 15
15
16
16
/* Settings */
17
17
18
- time_t proc_1_start_time ;
19
- time_t proc_1_reaction_time ;
20
- bool proc_1_int_blocked ;
21
- bool proc_1_term_blocked ;
22
- bool proc_1_have_access ;
18
+ static time_t proc_1_start_time ;
19
+ static time_t proc_1_reaction_time ;
20
+ static bool proc_1_int_blocked ;
21
+ static bool proc_1_term_blocked ;
22
+ static bool proc_1_have_access ;
23
23
24
24
/* State */
25
25
26
- time_t current_time ;
26
+ static time_t current_time ;
27
27
28
- bool exists ;
29
- bool stopped ;
28
+ static bool exists ;
29
+ static bool stopped ;
30
30
31
- time_t signal_time ;
32
- bool has_stop ;
33
- bool has_cont ;
34
- bool has_int ;
35
- bool has_term ;
36
- bool has_kill ;
31
+ static time_t signal_time ;
32
+ static bool has_stop ;
33
+ static bool has_cont ;
34
+ static bool has_int ;
35
+ static bool has_term ;
36
+ static bool has_kill ;
37
37
38
38
/* History */
39
39
40
- bool was_stopped ;
41
- int exit_signal ;
40
+ static bool was_stopped ;
41
+ static int exit_signal ;
42
42
43
43
void InitTime (void )
44
44
{
You can’t perform that action at this time.
0 commit comments