From 5f138e3d34ccd5d71ca80a18ca564be1aca01f3b Mon Sep 17 00:00:00 2001 From: Tomas Mudrunka Date: Thu, 1 Jul 2021 11:20:29 +0200 Subject: [PATCH] Fix filename --- c/pthread_pause.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c/pthread_pause.c b/c/pthread_pause.c index 81620a5..7d6ed6a 100644 --- a/c/pthread_pause.c +++ b/c/pthread_pause.c @@ -1,7 +1,7 @@ -//Filename: pause.c +//Filename: pthread_pause.c //Author: Tomas 'Harvie' Mudrunka 2021 -//Build: CFLAGS=-lpthread make pause; ./pause -//Test: valgrind --tool=helgrind ./pause +//Build: CFLAGS=-lpthread make pthread_pause; ./pthread_pause +//Test: valgrind --tool=helgrind ./pthread_pause //I've wrote this code as excercise to solve following stack overflow question: // https://stackoverflow.com/questions/9397068/how-to-pause-a-pthread-any-time-i-want/68119116#68119116 -- 2.30.2