FreeRTOS C-Addons  1.1.0
C-Addon functionality to FreeRTOS
stack_simple.c
Go to the documentation of this file.
1 /****************************************************************************
2  *
3  * Copyright (c) 2017, Michael Becker (michael.f.becker@gmail.com)
4  *
5  * This file is part of the FreeRTOS Add-ons project.
6  *
7  * Source Code:
8  * https://github.com/michaelbecker/freertos-addons
9  *
10  * Project Page:
11  * http://michaelbecker.github.io/freertos-addons/
12  *
13  * On-line Documentation:
14  * http://michaelbecker.github.io/freertos-addons/docs/html/index.html
15  *
16  * Permission is hereby granted, free of charge, to any person obtaining a
17  * copy of this software and associated documentation files
18  * (the "Software"), to deal in the Software without restriction, including
19  * without limitation the rights to use, copy, modify, merge, publish,
20  * distribute, sublicense, and/or sell copies of the Software, and to
21  * permit persons to whom the Software is furnished to do so,subject to the
22  * following conditions:
23  *
24  * + The above copyright notice and this permission notice shall be included
25  * in all copies or substantial portions of the Software.
26  * + Credit is appreciated, but not required, if you find this project
27  * useful enough to include in your application, product, device, etc.
28  *
29  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
30  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36  *
37  ***************************************************************************/
38 
39 
40 #include <stdlib.h>
41 #include "stack_simple.h"
42 
43 
44 void InitStack(Stack_t *Stack)
45 {
46  Stack->Count = 0;
47  SlInitHead(&Stack->Head);
48 }
49 
50 
51 void PushOnStack( Stack_t *Stack,
52  SlNode_t *Node)
53 {
54  if (!Stack)
55  return;
56 
57  if (!Node)
58  return;
59 
60  SlAddNodeToHead(&Stack->Head, Node);
61  Stack->Count++;
62 }
63 
64 
66 {
67  SlNode_t *Node;
68 
69  if (!Stack)
70  return NULL;
71 
72  if (Stack->Count == 0) {
73  return NULL;
74  }
75  else {
76  Stack->Count--;
77  }
78 
79  Node = SlRemoveNodeFromHead(&Stack->Head);
80 
81  return Node;
82 }
83 
84 
void PushOnStack(Stack_t *Stack, SlNode_t *Node)
Definition: stack_simple.c:51
SlNode_t * PopOffStack(Stack_t *Stack)
Definition: stack_simple.c:65
void InitStack(Stack_t *Stack)
Definition: stack_simple.c:44
SlNode_t Head
Definition: stack_simple.h:60
SlNode_t * SlRemoveNodeFromHead(SlNode_t *Head)
Definition: slist.c:162
#define SlInitHead(_head)
Definition: slist.h:68
#define SlAddNodeToHead(_head, _node)
Definition: slist.h:79