https://github.com/git/git
Revision 46992b5411508b3b1a77d3178440efa77774a367 authored by Junio C Hamano on 07 November 2013, 22:37:11 UTC, committed by Junio C Hamano on 07 November 2013, 22:37:11 UTC
Coloring around octopus merges in "log --graph" output was screwy.

* hn/log-graph-color-octopus:
  graph: fix coloring around octopus merges
2 parent s 07c55c0 + 339c17b
Raw File
Tip revision: 46992b5411508b3b1a77d3178440efa77774a367 authored by Junio C Hamano on 07 November 2013, 22:37:11 UTC
Merge branch 'hn/log-graph-color-octopus' into maint
Tip revision: 46992b5
thread-utils.h
#ifndef THREAD_COMPAT_H
#define THREAD_COMPAT_H

#ifndef NO_PTHREADS
#include <pthread.h>

extern int online_cpus(void);
extern int init_recursive_mutex(pthread_mutex_t*);

#endif
#endif /* THREAD_COMPAT_H */
back to top