summaryrefslogtreecommitdiff
path: root/direct/timothy_tests/threading/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'direct/timothy_tests/threading/lib.c')
-rw-r--r--direct/timothy_tests/threading/lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/direct/timothy_tests/threading/lib.c b/direct/timothy_tests/threading/lib.c
index 6456958..55084a2 100644
--- a/direct/timothy_tests/threading/lib.c
+++ b/direct/timothy_tests/threading/lib.c
@@ -12,7 +12,7 @@
*/
#include "lib.h"
-static unsigned int *p_counter;
+static volatile unsigned int *p_counter;
static unsigned int numberOfThreads=5;
unsigned int get_num_of_threads(void)
@@ -37,6 +37,6 @@ void set_counter(int x, unsigned int value)
void init_counter(unsigned int size_of_counter)
{
- p_counter=malloc(size_of_counter*sizeof(int));
+ p_counter=malloc(size_of_counter*sizeof(unsigned int));
}