Merge branch 'fix-gdbus-unix-addresses-test' into 'master'
[glib.git] / glib / gasyncqueue.h
blob05980a7778b8c1e87cda8f310fb51b889dbdeba2
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
20 * file for a list of people on the GLib Team. See the ChangeLog
21 * files for a list of changes. These files are distributed with
22 * GLib at ftp://ftp.gtk.org/pub/gtk/.
25 #ifndef __G_ASYNCQUEUE_H__
26 #define __G_ASYNCQUEUE_H__
28 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
29 #error "Only <glib.h> can be included directly."
30 #endif
32 #include <glib/gthread.h>
34 G_BEGIN_DECLS
36 typedef struct _GAsyncQueue GAsyncQueue;
38 GLIB_AVAILABLE_IN_ALL
39 GAsyncQueue *g_async_queue_new (void);
40 GLIB_AVAILABLE_IN_ALL
41 GAsyncQueue *g_async_queue_new_full (GDestroyNotify item_free_func);
42 GLIB_AVAILABLE_IN_ALL
43 void g_async_queue_lock (GAsyncQueue *queue);
44 GLIB_AVAILABLE_IN_ALL
45 void g_async_queue_unlock (GAsyncQueue *queue);
46 GLIB_AVAILABLE_IN_ALL
47 GAsyncQueue *g_async_queue_ref (GAsyncQueue *queue);
48 GLIB_AVAILABLE_IN_ALL
49 void g_async_queue_unref (GAsyncQueue *queue);
51 GLIB_DEPRECATED_FOR(g_async_queue_ref)
52 void g_async_queue_ref_unlocked (GAsyncQueue *queue);
54 GLIB_DEPRECATED_FOR(g_async_queue_unref)
55 void g_async_queue_unref_and_unlock (GAsyncQueue *queue);
57 GLIB_AVAILABLE_IN_ALL
58 void g_async_queue_push (GAsyncQueue *queue,
59 gpointer data);
60 GLIB_AVAILABLE_IN_ALL
61 void g_async_queue_push_unlocked (GAsyncQueue *queue,
62 gpointer data);
63 GLIB_AVAILABLE_IN_ALL
64 void g_async_queue_push_sorted (GAsyncQueue *queue,
65 gpointer data,
66 GCompareDataFunc func,
67 gpointer user_data);
68 GLIB_AVAILABLE_IN_ALL
69 void g_async_queue_push_sorted_unlocked (GAsyncQueue *queue,
70 gpointer data,
71 GCompareDataFunc func,
72 gpointer user_data);
73 GLIB_AVAILABLE_IN_ALL
74 gpointer g_async_queue_pop (GAsyncQueue *queue);
75 GLIB_AVAILABLE_IN_ALL
76 gpointer g_async_queue_pop_unlocked (GAsyncQueue *queue);
77 GLIB_AVAILABLE_IN_ALL
78 gpointer g_async_queue_try_pop (GAsyncQueue *queue);
79 GLIB_AVAILABLE_IN_ALL
80 gpointer g_async_queue_try_pop_unlocked (GAsyncQueue *queue);
81 GLIB_AVAILABLE_IN_ALL
82 gpointer g_async_queue_timeout_pop (GAsyncQueue *queue,
83 guint64 timeout);
84 GLIB_AVAILABLE_IN_ALL
85 gpointer g_async_queue_timeout_pop_unlocked (GAsyncQueue *queue,
86 guint64 timeout);
87 GLIB_AVAILABLE_IN_ALL
88 gint g_async_queue_length (GAsyncQueue *queue);
89 GLIB_AVAILABLE_IN_ALL
90 gint g_async_queue_length_unlocked (GAsyncQueue *queue);
91 GLIB_AVAILABLE_IN_ALL
92 void g_async_queue_sort (GAsyncQueue *queue,
93 GCompareDataFunc func,
94 gpointer user_data);
95 GLIB_AVAILABLE_IN_ALL
96 void g_async_queue_sort_unlocked (GAsyncQueue *queue,
97 GCompareDataFunc func,
98 gpointer user_data);
100 GLIB_AVAILABLE_IN_2_46
101 gboolean g_async_queue_remove (GAsyncQueue *queue,
102 gpointer item);
103 GLIB_AVAILABLE_IN_2_46
104 gboolean g_async_queue_remove_unlocked (GAsyncQueue *queue,
105 gpointer item);
106 GLIB_AVAILABLE_IN_2_46
107 void g_async_queue_push_front (GAsyncQueue *queue,
108 gpointer item);
109 GLIB_AVAILABLE_IN_2_46
110 void g_async_queue_push_front_unlocked (GAsyncQueue *queue,
111 gpointer item);
113 GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop)
114 gpointer g_async_queue_timed_pop (GAsyncQueue *queue,
115 GTimeVal *end_time);
116 GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop_unlocked)
117 gpointer g_async_queue_timed_pop_unlocked (GAsyncQueue *queue,
118 GTimeVal *end_time);
120 G_END_DECLS
122 #endif /* __G_ASYNCQUEUE_H__ */