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
f61d7e0a
Commit
f61d7e0a
authored
Apr 29, 2000
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enhanced libc's pthread configuration detection.
parent
12222f0d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletion
+5
-1
configure
configure
+0
-0
configure.in
configure.in
+1
-0
config.h.in
include/config.h.in
+3
-0
pthread.c
scheduler/pthread.c
+1
-1
No files found.
configure
View file @
f61d7e0a
This diff is collapsed.
Click to expand it.
configure.in
View file @
f61d7e0a
...
...
@@ -643,6 +643,7 @@ dnl **** Check for functions ****
AC_FUNC_ALLOCA()
AC_CHECK_FUNCS(\
__libc_fork \
_lwp_create \
clone \
getnetbyaddr \
...
...
include/config.h.in
View file @
f61d7e0a
...
...
@@ -146,6 +146,9 @@
/* The number of bytes in a long long. */
#undef SIZEOF_LONG_LONG
/* Define if you have the __libc_fork function. */
#undef HAVE___LIBC_FORK
/* Define if you have the _lwp_create function. */
#undef HAVE__LWP_CREATE
...
...
scheduler/pthread.c
View file @
f61d7e0a
...
...
@@ -47,7 +47,7 @@
#endif
/* get necessary libc symbols */
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)
&& defined(HAVE___LIBC_FORK)
#define LIBC_FORK __libc_fork
#define PTHREAD_FORK __fork
#define ALIAS_FORK
...
...
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