Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e8bd1104
Commit
e8bd1104
authored
Oct 03, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A couple of new functions have been added to the pthread_functions
structure.
parent
e0c082b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
pthread.c
scheduler/pthread.c
+5
-1
No files found.
scheduler/pthread.c
View file @
e8bd1104
...
...
@@ -255,6 +255,8 @@ struct pthread_functions
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
*
);
void
(
*
ptr__pthread_cleanup_push
)
(
struct
_pthread_cleanup_buffer
*
buffer
,
void
(
*
routine
)(
void
*
),
void
*
arg
);
void
(
*
ptr__pthread_cleanup_pop
)
(
struct
_pthread_cleanup_buffer
*
buffer
,
int
execute
);
};
static
pid_t
(
*
libc_fork
)(
void
);
...
...
@@ -810,7 +812,9 @@ static struct pthread_functions libc_pthread_functions =
NULL
,
/* ptr_pthread_sigaction */
NULL
,
/* ptr_pthread_sigwait */
NULL
,
/* ptr_pthread_raise */
__pthread_cond_timedwait
/* ptr___pthread_cond_timedwait */
__pthread_cond_timedwait
,
/* ptr___pthread_cond_timedwait */
_pthread_cleanup_push
,
/* ptr__pthread_cleanup_push */
_pthread_cleanup_pop
/* ptr__pthread_cleanup_pop */
};
#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