blob: ae95507767b7dac7c3c85c478ab4eef7ffb47fd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2026-present Eclipse ThreadX contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** ThreadX Component */
/** */
/** Timer */
/** */
/**************************************************************************/
/**************************************************************************/
#define TX_SOURCE_CODE
/* Include necessary system files. */
#include "tx_api.h"
#include "tx_timer.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _tx_timer_system_deactivate PORTABLE C */
/* 6.1 */
/* AUTHOR */
/* */
/* William E. Lamie, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function deactivates, or removes the timer from the active */
/* timer expiration list. If the timer is already deactivated, this */
/* function just returns. */
/* */
/* INPUT */
/* */
/* timer_ptr Pointer to timer control block */
/* */
/* OUTPUT */
/* */
/* TX_SUCCESS Always returns success */
/* */
/* CALLS */
/* */
/* None */
/* */
/* CALLED BY */
/* */
/* _tx_thread_system_resume Thread resume function */
/* _tx_timer_thread_entry Timer thread processing */
/* */
/**************************************************************************/
VOID _tx_timer_system_deactivate(TX_TIMER_INTERNAL *timer_ptr)
{
TX_TIMER_INTERNAL **list_head;
TX_TIMER_INTERNAL *next_timer;
TX_TIMER_INTERNAL *previous_timer;
/* Pickup the list head pointer. */
list_head = timer_ptr -> tx_timer_internal_list_head;
/* Determine if the timer still needs deactivation. */
if (list_head != TX_NULL)
{
/* Deactivate the timer. */
/* Pickup the next active timer. */
next_timer = timer_ptr -> tx_timer_internal_active_next;
/* See if this is the only timer in the list. */
if (timer_ptr == next_timer)
{
/* Yes, the only timer on the list. */
/* Determine if the head pointer needs to be updated. */
if (*(list_head) == timer_ptr)
{
/* Update the head pointer. */
*(list_head) = TX_NULL;
}
}
else
{
/* At least one more timer is on the same expiration list. */
/* Update the links of the adjacent timers. */
previous_timer = timer_ptr -> tx_timer_internal_active_previous;
next_timer -> tx_timer_internal_active_previous = previous_timer;
previous_timer -> tx_timer_internal_active_next = next_timer;
/* Determine if the head pointer needs to be updated. */
if (*(list_head) == timer_ptr)
{
/* Update the next timer in the list with the list head pointer. */
next_timer -> tx_timer_internal_list_head = list_head;
/* Update the head pointer. */
*(list_head) = next_timer;
}
}
/* Clear the timer's list head pointer. */
timer_ptr -> tx_timer_internal_list_head = TX_NULL;
}
}
|