git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] transport-helper: avoid dependency on thread-utils.h
@ 2010-12-10 11:48 Jonathan Nieder
  2010-12-10 18:21 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Jonathan Nieder @ 2010-12-10 11:48 UTC (permalink / raw)
  To: git; +Cc: Ilari Liusvaara

Since the transport-helper does not use recursive mutexes or ask the
number of cores, it does not require any declarations from the
thread-utils lib.  Removing the unnecessary #include avoids false
positives from "make CHECK_HEADER_DEPENDENCIES=1".

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
The #include directive in question was added in 7851b1e60
(remote-fd/ext: finishing touches after code review, 2010-11-17),
at the same times as the necessary #include for <pthread.h>.
This patch seems to work for me, but I wouldn't be surprised if
to be missing something.

 transport-helper.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/transport-helper.c b/transport-helper.c
index 3a50856..7c99051 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -11,7 +11,6 @@
 
 #ifndef NO_PTHREADS
 #include <pthread.h>
-#include "thread-utils.h"
 #endif
 
 static int debug;
-- 
1.7.2.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-12-10 19:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-10 11:48 [PATCH] transport-helper: avoid dependency on thread-utils.h Jonathan Nieder
2010-12-10 18:21 ` Junio C Hamano
2010-12-10 19:46   ` [PATCH 0/2] " Jonathan Nieder
2010-12-10 19:47     ` [PATCH 1/2] simplify inclusion of pthread.h Jonathan Nieder
2010-12-10 19:51       ` Jonathan Nieder
2010-12-10 19:48     ` [PATCH 2/2] Makefile: transport-helper uses thread-utils.h Jonathan Nieder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).