Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fsm-ipc-win32.c « fsmonitor « compat - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8928fa93ce223968ab59279ddac50a3dd2b15239 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "git-compat-util.h"
#include "config.h"
#include "fsmonitor-ipc.h"
#include "path.h"

const char *fsmonitor_ipc__get_path(struct repository *r) {
	static char *ret;
	if (!ret)
		ret = git_pathdup("fsmonitor--daemon.ipc");
	return ret;
}