mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
branches/zip: Remove the unused function os_thread_join().
This commit is contained in:
parent
ff18e182aa
commit
ab10478ca4
2 changed files with 0 additions and 16 deletions
|
@ -79,13 +79,6 @@ os_thread_create(
|
|||
os_thread_id_t* thread_id); /* out: id of the created
|
||||
thread, or NULL */
|
||||
|
||||
#ifdef HAVE_PTHREAD_JOIN
|
||||
UNIV_INTERN
|
||||
int
|
||||
os_thread_join(
|
||||
/*===========*/
|
||||
os_thread_id_t thread_id); /* in: id of the thread to join */
|
||||
#endif
|
||||
/*********************************************************************
|
||||
Exits the current thread. */
|
||||
UNIV_INTERN
|
||||
|
|
|
@ -217,15 +217,6 @@ os_thread_exit(
|
|||
#endif
|
||||
}
|
||||
|
||||
#ifdef HAVE_PTHREAD_JOIN
|
||||
int
|
||||
os_thread_join(
|
||||
/*===========*/
|
||||
os_thread_id_t thread_id) /* in: id of the thread to join */
|
||||
{
|
||||
return(pthread_join(thread_id, NULL));
|
||||
}
|
||||
#endif
|
||||
/*********************************************************************
|
||||
Returns handle to the current thread. */
|
||||
UNIV_INTERN
|
||||
|
|
Loading…
Add table
Reference in a new issue