mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
Merge branch 'gthread-exit-noreturn' into 'main'
gthread: Annotate g_thread_exit() with G_NORETURN See merge request GNOME/glib!3562
This commit is contained in:
commit
2885999394
@ -154,7 +154,7 @@ GThread * g_thread_try_new (const gchar *name,
|
|||||||
GError **error);
|
GError **error);
|
||||||
GLIB_AVAILABLE_IN_ALL
|
GLIB_AVAILABLE_IN_ALL
|
||||||
GThread * g_thread_self (void);
|
GThread * g_thread_self (void);
|
||||||
GLIB_AVAILABLE_IN_ALL
|
G_NORETURN GLIB_AVAILABLE_IN_ALL
|
||||||
void g_thread_exit (gpointer retval);
|
void g_thread_exit (gpointer retval);
|
||||||
GLIB_AVAILABLE_IN_ALL
|
GLIB_AVAILABLE_IN_ALL
|
||||||
gpointer g_thread_join (GThread *thread);
|
gpointer g_thread_join (GThread *thread);
|
||||||
|
@ -124,7 +124,7 @@ GRealThread *g_system_thread_new (GThreadFunc proxy,
|
|||||||
GError **error);
|
GError **error);
|
||||||
void g_system_thread_free (GRealThread *thread);
|
void g_system_thread_free (GRealThread *thread);
|
||||||
|
|
||||||
void g_system_thread_exit (void);
|
G_NORETURN void g_system_thread_exit (void);
|
||||||
void g_system_thread_set_name (const gchar *name);
|
void g_system_thread_set_name (const gchar *name);
|
||||||
|
|
||||||
/* gthread.c */
|
/* gthread.c */
|
||||||
|
Loading…
Reference in New Issue
Block a user