commit 4ead333977a6c77a9cbae5a2ff8d342c8c6120eb
Author: francois.trahay <francois.trahay@telecom-sudparis.eu>
Date:   Mon Nov 6 12:35:02 2017 +0100

    fix a wrong cast that make dummy_thread hang on big endian architectures

diff --git a/test/pthread/dummy_thread.c b/test/pthread/dummy_thread.c
index ade6cc41..907652bb 100644
--- a/test/pthread/dummy_thread.c
+++ b/test/pthread/dummy_thread.c
@@ -72,7 +72,7 @@ void compute(int usec) {
 }
 
 void* f_thread(void* arg) {
-  uint8_t my_id = *(uint8_t*) arg;
+  int my_id = *(int*) arg;
 
   /* Notify the main thread that we got the args */
   sem_post(&thread_ready);

commit aa97b80d737e9fffafff2400796ce37de5a7e682
Author: francois.trahay <francois.trahay@telecom-sudparis.eu>
Date:   Tue Nov 7 09:22:36 2017 +0100

    fix a wrong cast that make test_pthread hang on big endian architectures

diff --git a/test/pthread/test_pthread.c b/test/pthread/test_pthread.c
index 573f517b..b7235e89 100644
--- a/test/pthread/test_pthread.c
+++ b/test/pthread/test_pthread.c
@@ -76,7 +76,7 @@ void compute(int usec) {
 }
 
 void* f_thread(void* arg) {
-  uint8_t my_id = *(uint8_t*) arg;
+  int my_id = *(int*) arg;
 
   /* Notify the main thread that we got the args */
   sem_post(&thread_ready);
