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
f087bc24
Commit
f087bc24
authored
Aug 27, 2013
by
Russell Belfer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Convert to our own SRWLOCK type on Win32
parent
2f368a66
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/win32/mingw-compat.h
+0
-2
src/win32/pthread.c
+1
-1
src/win32/pthread.h
+3
-1
No files found.
src/win32/mingw-compat.h
View file @
f087bc24
...
...
@@ -24,8 +24,6 @@ GIT_INLINE(size_t) p_strnlen(const char *s, size_t maxlen) {
return
end
?
(
size_t
)(
end
-
s
)
:
maxlen
;
}
typedef
struct
{
void
*
Ptr
;
}
SRWLOCK
;
#endif
#endif
/* INCLUDE_mingw_compat__ */
src/win32/pthread.c
View file @
f087bc24
...
...
@@ -146,7 +146,7 @@ int pthread_num_processors_np(void)
static
HINSTANCE
win32_kernel32_dll
;
typedef
void
(
WINAPI
*
win32_srwlock_fn
)(
SRWLOCK
*
);
typedef
void
(
WINAPI
*
win32_srwlock_fn
)(
GIT_
SRWLOCK
*
);
static
win32_srwlock_fn
win32_srwlock_initialize
;
static
win32_srwlock_fn
win32_srwlock_acquire_shared
;
...
...
src/win32/pthread.h
View file @
f087bc24
...
...
@@ -25,9 +25,11 @@ typedef CRITICAL_SECTION pthread_mutex_t;
typedef
HANDLE
pthread_t
;
typedef
HANDLE
pthread_cond_t
;
typedef
struct
{
void
*
Ptr
;
}
GIT_SRWLOCK
;
typedef
struct
{
union
{
SRWLOCK
srwl
;
GIT_
SRWLOCK
srwl
;
CRITICAL_SECTION
csec
;
}
native
;
}
pthread_rwlock_t
;
...
...
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