Skip to content

Commit 0739689

Browse files
implausiblezawata
authored andcommitted
thread checkout: stub indirection for threading
1 parent dc4e588 commit 0739689

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/checkout.c

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1944,7 +1944,7 @@ static int checkout_create_the_new_perform(
19441944
return 0;
19451945
}
19461946

1947-
static int checkout_create_the_new(
1947+
static int checkout_create_the_new__single(
19481948
unsigned int *actions,
19491949
checkout_data *data)
19501950
{
@@ -1967,6 +1967,15 @@ static int checkout_create_the_new(
19671967
return 0;
19681968
}
19691969

1970+
static int checkout_create_the_new(
1971+
unsigned int *actions,
1972+
checkout_data *data)
1973+
{
1974+
#ifdef GIT_THREADS
1975+
#endif
1976+
return checkout_create_the_new__single(actions, data);
1977+
}
1978+
19701979
static int checkout_create_submodules(
19711980
unsigned int *actions,
19721981
checkout_data *data)

0 commit comments

Comments
 (0)