Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
31b8b646
Commit
31b8b646
authored
Dec 11, 2001
by
Jukka Heinonen
Committed by
Alexandre Julliard
Dec 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented pthread_rwlock stubs.
parent
b1537259
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
11 deletions
+60
-11
pthread.c
scheduler/pthread.c
+60
-11
No files found.
scheduler/pthread.c
View file @
31b8b646
...
...
@@ -18,6 +18,7 @@
#include "winbase.h"
#include "thread.h"
#include "ntddk.h"
static
int
init_done
;
...
...
@@ -72,17 +73,27 @@ void PTHREAD_init_done(void)
extern
pid_t
LIBC_FORK
(
void
);
#define LIBC_SIGACTION __sigaction
extern
int
LIBC_SIGACTION
(
int
signum
,
const
struct
sigaction
*
act
,
struct
sigaction
*
oldact
);
/* NOTE: This is a truly extremely incredibly ugly hack!
* But it does seem to work... */
/* assume that pthread_mutex_t has room for at least one pointer,
* and hope that the users of pthread_mutex_t considers it opaque
* (never checks what's in it) */
* (never checks what's in it)
* also: assume that static initializer sets pointer to NULL
*/
typedef
struct
{
CRITICAL_SECTION
*
critsect
;
}
*
wine_mutex
;
/* see wine_mutex above for comments */
typedef
struct
{
RTL_RWLOCK
*
lock
;
}
*
wine_rwlock
;
typedef
struct
_wine_cleanup
{
void
(
*
routine
)(
void
*
);
void
*
arg
;
...
...
@@ -403,53 +414,91 @@ int pthread_condattr_destroy(pthread_condattr_t *attr)
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 2)
/***** READ-WRITE LOCKS *****/
/* not implemented right now */
static
void
rwlock_real_init
(
pthread_rwlock_t
*
rwlock
)
{
RTL_RWLOCK
*
lock
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
RTL_RWLOCK
));
RtlInitializeResource
(
lock
);
if
(
InterlockedCompareExchangePointer
((
void
**
)
&
(((
wine_rwlock
)
rwlock
)
->
lock
),
lock
,
NULL
)
!=
NULL
)
{
/* too late, some other thread already did it */
RtlDeleteResource
(
lock
);
HeapFree
(
GetProcessHeap
(),
0
,
lock
);
}
}
int
__pthread_rwlock_init
(
pthread_rwlock_t
*
rwlock
,
const
pthread_rwlockattr_t
*
rwlock_attr
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_init
\n
"
)
;
((
wine_rwlock
)
rwlock
)
->
lock
=
NULL
;
return
0
;
}
strong_alias
(
__pthread_rwlock_init
,
pthread_rwlock_init
);
int
__pthread_rwlock_destroy
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_destroy
\n
"
);
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
return
0
;
RtlDeleteResource
(((
wine_rwlock
)
rwlock
)
->
lock
);
HeapFree
(
GetProcessHeap
(),
0
,
((
wine_rwlock
)
rwlock
)
->
lock
);
return
0
;
}
strong_alias
(
__pthread_rwlock_destroy
,
pthread_rwlock_destroy
);
int
__pthread_rwlock_rdlock
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_rdlock
\n
"
);
return
0
;
if
(
!
init_done
)
return
0
;
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
rwlock_real_init
(
rwlock
);
while
(
TRUE
)
if
(
RtlAcquireResourceShared
(((
wine_rwlock
)
rwlock
)
->
lock
,
TRUE
))
return
0
;
}
strong_alias
(
__pthread_rwlock_rdlock
,
pthread_rwlock_rdlock
);
int
__pthread_rwlock_tryrdlock
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_tryrdlock
\n
"
);
if
(
!
init_done
)
return
0
;
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
rwlock_real_init
(
rwlock
);
if
(
!
RtlAcquireResourceShared
(((
wine_rwlock
)
rwlock
)
->
lock
,
FALSE
))
{
errno
=
EBUSY
;
return
-
1
;
}
return
0
;
}
strong_alias
(
__pthread_rwlock_tryrdlock
,
pthread_rwlock_tryrdlock
);
int
__pthread_rwlock_wrlock
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_wrlock_rdlock
\n
"
);
return
0
;
if
(
!
init_done
)
return
0
;
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
rwlock_real_init
(
rwlock
);
while
(
TRUE
)
if
(
RtlAcquireResourceExclusive
(((
wine_rwlock
)
rwlock
)
->
lock
,
TRUE
))
return
0
;
}
strong_alias
(
__pthread_rwlock_wrlock
,
pthread_rwlock_wrlock
);
int
__pthread_rwlock_trywrlock
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_trywrlock
\n
"
);
if
(
!
init_done
)
return
0
;
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
rwlock_real_init
(
rwlock
);
if
(
!
RtlAcquireResourceExclusive
(((
wine_rwlock
)
rwlock
)
->
lock
,
FALSE
))
{
errno
=
EBUSY
;
return
-
1
;
}
return
0
;
}
strong_alias
(
__pthread_rwlock_trywrlock
,
pthread_rwlock_trywrlock
);
int
__pthread_rwlock_unlock
(
pthread_rwlock_t
*
rwlock
)
{
P_OUTPUT
(
"FIXME:pthread_rwlock_unlock
\n
"
);
if
(
!
((
wine_rwlock
)
rwlock
)
->
lock
)
return
0
;
RtlReleaseResource
(
((
wine_rwlock
)
rwlock
)
->
lock
);
return
0
;
}
strong_alias
(
__pthread_rwlock_unlock
,
pthread_rwlock_unlock
);
...
...
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