Blame view

RIOT/tests/malloc/main.c 1.62 KB
a752c7ab   elopes   add first test an...
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
  /*
   * Copyright (C) 2013 Benjamin Valentin <benpicco@zedat.fu-berlin.de>
   *
   * This file is subject to the terms and conditions of the GNU Lesser General
   * Public License v2.1. See the file LICENSE in the top level directory for more
   * details.
   */
  
  /**
   * @ingroup tests
   * @{
   *
   * @file
   * @brief   Simple malloc/free test
   *
   *
   * @author  Benjamin Valentin <benpicco@zedat.fu-berlin.de>
   *
   * @}
   */
  
  #include <stdio.h>
  #include <stdlib.h>
  #include <string.h>
  
  #define CHUNK_SIZE 1024
  
  struct node {
      struct node *next;
      void *ptr;
  };
  
  int total = 0;
  
  void fill_memory(struct node *head)
  {
      while (head && (head->ptr = malloc(CHUNK_SIZE))) {
          printf("Allocated %d Bytes at 0x%p, total %d\n", CHUNK_SIZE, head->ptr, total += CHUNK_SIZE);
          memset(head->ptr, '@', CHUNK_SIZE);
          head = head->next = malloc(sizeof(struct node));
          head->ptr =  0;
          head->next = 0;
          total += sizeof(struct node);
      }
  }
  
  void free_memory(struct node *head)
  {
      struct node *old_head;
  
      while (head) {
          if (head->ptr) {
              printf("Free %d Bytes at 0x%p, total %d\n", CHUNK_SIZE, head->ptr, total -= CHUNK_SIZE);
              free(head->ptr);
          }
  
          if (head->next) {
              old_head = head;
              head = head->next;
              free(old_head);
          }
          else {
              free(head);
              head = 0;
          }
  
          total -= sizeof(struct node);
      }
  }
  
  int main(void)
  {
      while (1) {
          struct node *head = malloc(sizeof(struct node));
          total += sizeof(struct node);
  
          fill_memory(head);
          free_memory(head);
      }
  
      return 0;
  }