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
5e4f2b5f
Commit
5e4f2b5f
authored
Oct 16, 2012
by
Philip Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support pthread_cond_* on Win32
parent
a8918418
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
0 deletions
+72
-0
src/win32/pthread.c
+65
-0
src/win32/pthread.h
+7
-0
No files found.
src/win32/pthread.c
View file @
5e4f2b5f
...
...
@@ -54,6 +54,71 @@ int pthread_mutex_unlock(pthread_mutex_t *mutex)
return
0
;
}
int
pthread_cond_init
(
pthread_cond_t
*
cond
,
const
pthread_condattr_t
*
attr
)
{
/* We don't support non-default attributes. */
if
(
attr
)
return
EINVAL
;
/* This is an auto-reset event. */
*
cond
=
CreateEventW
(
NULL
,
FALSE
,
FALSE
,
NULL
);
assert
(
*
cond
);
/* If we can't create the event, claim that the reason was out-of-memory.
* The actual reason can be fetched with GetLastError(). */
return
*
cond
?
0
:
ENOMEM
;
}
int
pthread_cond_destroy
(
pthread_cond_t
*
cond
)
{
BOOL
closed
;
if
(
!
cond
)
return
EINVAL
;
closed
=
CloseHandle
(
*
cond
);
assert
(
closed
);
*
cond
=
NULL
;
return
0
;
}
int
pthread_cond_wait
(
pthread_cond_t
*
cond
,
pthread_mutex_t
*
mutex
)
{
int
error
;
DWORD
wait_result
;
if
(
!
cond
||
!
mutex
)
return
EINVAL
;
/* The caller must be holding the mutex. */
error
=
pthread_mutex_unlock
(
mutex
);
if
(
error
)
return
error
;
wait_result
=
WaitForSingleObject
(
*
cond
,
INFINITE
);
assert
(
WAIT_OBJECT_0
==
wait_result
);
return
pthread_mutex_lock
(
mutex
);
}
int
pthread_cond_signal
(
pthread_cond_t
*
cond
)
{
BOOL
signaled
;
if
(
!
cond
)
return
EINVAL
;
signaled
=
SetEvent
(
*
cond
);
assert
(
signaled
);
return
0
;
}
/* pthread_cond_broadcast is not implemented because doing so with just Win32 events
* is quite complicated, and no caller in libgit2 uses it yet. */
int
pthread_num_processors_np
(
void
)
{
DWORD_PTR
p
,
s
;
...
...
src/win32/pthread.h
View file @
5e4f2b5f
...
...
@@ -21,6 +21,7 @@ typedef int pthread_condattr_t;
typedef
int
pthread_attr_t
;
typedef
CRITICAL_SECTION
pthread_mutex_t
;
typedef
HANDLE
pthread_t
;
typedef
HANDLE
pthread_cond_t
;
#define PTHREAD_MUTEX_INITIALIZER {(void*)-1};
...
...
@@ -35,6 +36,12 @@ int pthread_mutex_destroy(pthread_mutex_t *);
int
pthread_mutex_lock
(
pthread_mutex_t
*
);
int
pthread_mutex_unlock
(
pthread_mutex_t
*
);
int
pthread_cond_init
(
pthread_cond_t
*
,
const
pthread_condattr_t
*
);
int
pthread_cond_destroy
(
pthread_cond_t
*
);
int
pthread_cond_wait
(
pthread_cond_t
*
,
pthread_mutex_t
*
);
int
pthread_cond_signal
(
pthread_cond_t
*
);
/* pthread_cond_broadcast is not supported on Win32 yet. */
int
pthread_num_processors_np
(
void
);
#endif
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