Revision 6376463c37e0371a411013b90b2e8fc0f7d27dfa authored by Junio C Hamano on 05 March 2014, 23:06:26 UTC, committed by Junio C Hamano on 05 March 2014, 23:06:26 UTC
Teach combine-diff to honour the path-output-order imposed by
diffcore-order, and optimize how matching paths are found in
the N-way diffs made with parents.

* ks/combine-diff:
  tests: add checking that combine-diff emits only correct paths
  combine-diff: simplify intersect_paths() further
  combine-diff: combine_diff_path.len is not needed anymore
  combine-diff: optimize combine_diff_path sets intersection
  diff test: add tests for combine-diff with orderfile
  diffcore-order: export generic ordering interface
2 parent s 2de3478 + fce135c
Raw File
unix-socket.h
#ifndef UNIX_SOCKET_H
#define UNIX_SOCKET_H

int unix_stream_connect(const char *path);
int unix_stream_listen(const char *path);

#endif /* UNIX_SOCKET_H */
back to top