Demonstration of deadlocks by adding a small delay updated for mbed os 5.4

Fork of Task617-mbedos54 by Stage-1 Students SoCEM

Revision:
6:bd736256c32d
Parent:
5:d6461300576b
--- a/main.cpp	Wed Mar 09 17:55:01 2016 +0000
+++ b/main.cpp	Mon Apr 03 11:34:50 2017 +0000
@@ -29,7 +29,7 @@
 unsigned long sw1Count = 0;
 unsigned long sw2Count = 0;
 
-void thread1( const void* arg ) 
+void thread1() 
 {
     pc.printf("Entering thread 1\n");
     while (true) {
@@ -57,7 +57,7 @@
     }
 }
 
-void thread2( const void* arg ) 
+void thread2() 
 {
     pc.printf("Entering thread 2\n");  
     while (true) {
@@ -95,8 +95,10 @@
     tidMain = Thread::gettid();  
     
     //Threads
-    Thread t1(thread1);
-    Thread t2(thread2);
+    Thread t1, t2;
+        
+    t1.start(thread1);
+    t2.start(thread2);
     
     pc.printf("Main Thread\n");
     while (true) {