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
dbb2b80f
Commit
dbb2b80f
authored
Sep 11, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ptr___pthread_cond_timedwait in the pthread_functions structure
to match the latest glibc.
parent
68ea3623
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
pthread.c
scheduler/pthread.c
+3
-1
No files found.
scheduler/pthread.c
View file @
dbb2b80f
...
...
@@ -249,6 +249,7 @@ struct pthread_functions
int
(
*
ptr_pthread_sigaction
)
(
int
sig
,
const
struct
sigaction
*
act
,
struct
sigaction
*
oact
);
int
(
*
ptr_pthread_sigwait
)
(
const
sigset_t
*
set
,
int
*
sig
);
int
(
*
ptr_pthread_raise
)
(
int
sig
);
int
(
*
ptr___pthread_cond_timedwait
)
(
pthread_cond_t
*
,
pthread_mutex_t
*
,
const
struct
timespec
*
);
};
static
pid_t
(
*
libc_fork
)(
void
);
...
...
@@ -810,7 +811,8 @@ static struct pthread_functions libc_pthread_functions =
pthread_internal_tsd_address
,
/* ptr_pthread_internal_tsd_address */
NULL
,
/* ptr_pthread_sigaction */
NULL
,
/* ptr_pthread_sigwait */
NULL
/* ptr_pthread_raise */
NULL
,
/* ptr_pthread_raise */
__pthread_cond_timedwait
/* ptr___pthread_cond_timedwait */
};
#endif
/* __GLIBC__ || __FREEBSD__ */
...
...
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