[kdbus] sync with kdbus (kdbus.h - commit: 5ae1ecac44cb)
[platform/upstream/glib.git] / glib / gasyncqueue.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
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 of the License, or (at your option) any later version.
8  *
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.
13  *
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/>.
16  */
17
18 /*
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/.
23  */
24
25 #ifndef __G_ASYNCQUEUE_H__
26 #define __G_ASYNCQUEUE_H__
27
28 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
29 #error "Only <glib.h> can be included directly."
30 #endif
31
32 #include <glib/gthread.h>
33
34 G_BEGIN_DECLS
35
36 typedef struct _GAsyncQueue GAsyncQueue;
37
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);
50
51 GLIB_DEPRECATED_FOR(g_async_queue_ref)
52 void         g_async_queue_ref_unlocked         (GAsyncQueue      *queue);
53
54 GLIB_DEPRECATED_FOR(g_async_queue_unref)
55 void         g_async_queue_unref_and_unlock     (GAsyncQueue      *queue);
56
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);
99
100 GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop)
101 gpointer     g_async_queue_timed_pop            (GAsyncQueue      *queue,
102                                                  GTimeVal         *end_time);
103 GLIB_DEPRECATED_FOR(g_async_queue_timeout_pop_unlocked)
104 gpointer     g_async_queue_timed_pop_unlocked   (GAsyncQueue      *queue,
105                                                  GTimeVal         *end_time);
106
107 G_END_DECLS
108
109 #endif /* __G_ASYNCQUEUE_H__ */