Commit ab10478c authored by marko's avatar marko

branches/zip: Remove the unused function os_thread_join().

parent ff18e182
...@@ -79,13 +79,6 @@ os_thread_create( ...@@ -79,13 +79,6 @@ os_thread_create(
os_thread_id_t* thread_id); /* out: id of the created os_thread_id_t* thread_id); /* out: id of the created
thread, or NULL */ 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. */ Exits the current thread. */
UNIV_INTERN UNIV_INTERN
......
...@@ -217,15 +217,6 @@ os_thread_exit( ...@@ -217,15 +217,6 @@ os_thread_exit(
#endif #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. */ Returns handle to the current thread. */
UNIV_INTERN UNIV_INTERN
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment