Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
03658d26
Commit
03658d26
authored
May 16, 2002
by
Sinisa@sinisa.nasamreza.org
Browse files
Options
Browse Files
Download
Plain Diff
Merge sinisa@work.mysql.com:/home/bk/mysql
into sinisa.nasamreza.org:/mnt/mail/work/mysql
parents
f0928187
b3005bf7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
mysys/my_pthread.c
mysys/my_pthread.c
+1
-1
No files found.
mysys/my_pthread.c
View file @
03658d26
...
@@ -417,7 +417,7 @@ int my_pthread_cond_timedwait(pthread_cond_t *cond,
...
@@ -417,7 +417,7 @@ int my_pthread_cond_timedwait(pthread_cond_t *cond,
struct
timespec
*
abstime
)
struct
timespec
*
abstime
)
{
{
int
error
=
pthread_cond_timedwait
(
cond
,
mutex
,
abstime
);
int
error
=
pthread_cond_timedwait
(
cond
,
mutex
,
abstime
);
return
error
==
EAGAIN
?
ETIMEDOUT
:
error
;
return
(
error
==
EAGAIN
||
error
==
-
1
)
?
ETIMEDOUT
:
error
;
}
}
#endif
/* HAVE_BROKEN_PTHREAD_COND_TIMEDWAIT */
#endif
/* HAVE_BROKEN_PTHREAD_COND_TIMEDWAIT */
...
...
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