repo.or.cz
/
git
/
gitster.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync with 'maint'
[git/gitster.git]
/
compat
/
fsmonitor
/
fsm-ipc-win32.c
blob
41984ea48e26b8c5fc9cf8ed9bc6851957a230d9
1
#include
"git-compat-util.h"
2
#include
"config.h"
3
#include
"fsmonitor-ipc.h"
4
#include
"path.h"
5
6
const char
*
fsmonitor_ipc__get_path
(
struct
repository
*
r
) {
7
static char
*
ret
;
8
if
(!
ret
)
9
ret
=
repo_git_path
(
r
,
"fsmonitor--daemon.ipc"
);
10
return
ret
;
11
}