mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 15:46:17 +01:00
g_system_thread_join: take GRealThread *
Make g_system_thread_join take the GRealThread* instead of a GSystemThread.
This commit is contained in:
parent
e064c9bfec
commit
4bb968e335
@ -1140,10 +1140,10 @@ g_thread_yield (void)
|
||||
}
|
||||
|
||||
void
|
||||
g_system_thread_join (gpointer thread)
|
||||
g_system_thread_join (GRealThread *thread)
|
||||
{
|
||||
gpointer ignore;
|
||||
posix_check_cmd (pthread_join (*(pthread_t*)thread, &ignore));
|
||||
posix_check_cmd (pthread_join (*(pthread_t*)&(thread->system_thread), &ignore));
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -539,9 +539,9 @@ g_thread_yield (void)
|
||||
}
|
||||
|
||||
void
|
||||
g_system_thread_join (gpointer thread)
|
||||
g_system_thread_join (GRealThread *thread)
|
||||
{
|
||||
GThreadData *target = *(GThreadData **)thread;
|
||||
GThreadData *target = *(GThreadData **)&(thread->system_thread);
|
||||
|
||||
g_return_if_fail (target->joinable);
|
||||
|
||||
|
@ -883,7 +883,7 @@ g_thread_join (GThread *thread)
|
||||
g_return_val_if_fail (thread, NULL);
|
||||
g_return_val_if_fail (thread->joinable, NULL);
|
||||
|
||||
g_system_thread_join (&real->system_thread);
|
||||
g_system_thread_join (real);
|
||||
|
||||
retval = real->retval;
|
||||
|
||||
|
@ -31,7 +31,8 @@ G_BEGIN_DECLS
|
||||
|
||||
typedef struct _GRealThread GRealThread;
|
||||
|
||||
G_GNUC_INTERNAL void g_system_thread_join (gpointer thread);
|
||||
G_GNUC_INTERNAL
|
||||
void g_system_thread_join (GRealThread *thread);
|
||||
|
||||
G_GNUC_INTERNAL
|
||||
GRealThread * g_system_thread_new (void);
|
||||
|
Loading…
Reference in New Issue
Block a user