Coding styles fixes.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 4 Mar 2018 09:28:38 +0000 (10:28 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 4 Mar 2018 09:28:38 +0000 (10:28 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
lecteursredacteurs/lecteursredacteurs.c
thread-pid/thread-pid.c

index 329be03a639f3ba515f717b63fac552a5c96703e..2c485d7d072390e1005292b7e70bba234f18a46b 100644 (file)
@@ -27,7 +27,7 @@ static void *lecteur(void *arg)
                        sem_post(&redact);
                sem_post(&mutex);
        }
-    return NULL;
+       return NULL;
 }
 
 static void *redacteur(void *arg)
@@ -40,7 +40,7 @@ static void *redacteur(void *arg)
                sleep(2);
                sem_post(&redact);
        }
-    return NULL;
+       return NULL;
 }
 
 int main()
index a993c777d5a11766f3f8ba3c3482be840e1bc6f2..648cd82c33ba39f0b64ac3a00a9a5754dde36bd5 100644 (file)
@@ -4,7 +4,7 @@
 
 static void* fonction(void* args) {
     printf("pid du thread fils = %d\n", getpid());
-    while(1);   // forever
+    while (1);   // forever
     return NULL;
 }
 
@@ -13,6 +13,6 @@ int main() {
 
     printf("pid de main = %d\n", getpid());
     pthread_create(&thread, NULL, &fonction, NULL);
-    while(1);   // forever
+    while (1);   // forever
     return 0;
 }