Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
fcb322f5
Commit
fcb322f5
authored
Mar 31, 2017
by
Edward Thomson
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/pr/3790' into win32_posix
parents
caf7a7a6
32269b15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
7 deletions
+39
-7
src/win32/posix_w32.c
+39
-7
No files found.
src/win32/posix_w32.c
View file @
fcb322f5
...
...
@@ -93,17 +93,31 @@ int p_unlink(const char *path)
{
git_win32_path
buf
;
int
error
;
int
unlink_tries
;
if
(
git_win32_path_from_utf8
(
buf
,
path
)
<
0
)
return
-
1
;
error
=
_wunlink
(
buf
);
/* If the file could not be deleted because it was
* read-only, clear the bit and try again */
if
(
error
==
-
1
&&
errno
==
EACCES
)
{
_wchmod
(
buf
,
0666
);
/* wait up to 50ms if file is locked by another thread or process */
unlink_tries
=
0
;
while
(
unlink_tries
<
10
)
{
error
=
_wunlink
(
buf
);
/* If the file could not be deleted because it was
* read-only, clear the bit and try again */
if
(
error
==
-
1
&&
errno
==
EACCES
)
{
_wchmod
(
buf
,
0666
);
error
=
_wunlink
(
buf
);
if
(
error
==
-
1
&&
errno
==
EACCES
)
{
Sleep
(
5
);
unlink_tries
++
;
}
else
{
break
;
}
}
else
{
break
;
}
}
return
error
;
...
...
@@ -286,6 +300,8 @@ int p_open(const char *path, int flags, ...)
{
git_win32_path
buf
;
mode_t
mode
=
0
;
int
open_tries
;
int
handle
;
if
(
git_win32_path_from_utf8
(
buf
,
path
)
<
0
)
return
-
1
;
...
...
@@ -298,7 +314,23 @@ int p_open(const char *path, int flags, ...)
va_end
(
arg_list
);
}
return
_wopen
(
buf
,
flags
|
STANDARD_OPEN_FLAGS
,
mode
&
WIN32_MODE_MASK
);
/* wait up to 50ms if file is locked by another thread or process */
open_tries
=
0
;
while
(
open_tries
<
10
)
{
handle
=
_wopen
(
buf
,
flags
|
STANDARD_OPEN_FLAGS
,
mode
&
WIN32_MODE_MASK
);
if
(
handle
!=
-
1
)
{
break
;
}
if
(
errno
==
EACCES
)
{
Sleep
(
5
);
open_tries
++
;
}
else
{
break
;
}
}
return
handle
;
}
int
p_creat
(
const
char
*
path
,
mode_t
mode
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment