5c362d21bf2d53ffa01c69d1ef4e54f0670b05e2
[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, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
28 #error "Only <glib.h> can be included directly."
29 #endif
30
31 #ifndef __G_ASYNCQUEUE_H__
32 #define __G_ASYNCQUEUE_H__
33
34 #include <glib/gthread.h>
35
36 G_BEGIN_DECLS
37
38 typedef struct _GAsyncQueue GAsyncQueue;
39
40 GAsyncQueue *g_async_queue_new                  (void);
41 GAsyncQueue *g_async_queue_new_full             (GDestroyNotify item_free_func);
42 void         g_async_queue_lock                 (GAsyncQueue      *queue);
43 void         g_async_queue_unlock               (GAsyncQueue      *queue);
44 GAsyncQueue *g_async_queue_ref                  (GAsyncQueue      *queue);
45 void         g_async_queue_unref                (GAsyncQueue      *queue);
46
47 #ifndef G_DISABLE_DEPRECATED
48 GLIB_DEPRECATED_FOR(g_async_queue_ref)
49 void         g_async_queue_ref_unlocked         (GAsyncQueue      *queue);
50
51 GLIB_DEPRECATED_FOR(g_async_queue_unref)
52 void         g_async_queue_unref_and_unlock     (GAsyncQueue      *queue);
53 #endif /* !G_DISABLE_DEPRECATED */
54
55 void         g_async_queue_push                 (GAsyncQueue      *queue,
56                                                  gpointer          data);
57 void         g_async_queue_push_unlocked        (GAsyncQueue      *queue,
58                                                  gpointer          data);
59 void         g_async_queue_push_sorted          (GAsyncQueue      *queue,
60                                                  gpointer          data,
61                                                  GCompareDataFunc  func,
62                                                  gpointer          user_data);
63 void         g_async_queue_push_sorted_unlocked (GAsyncQueue      *queue,
64                                                  gpointer          data,
65                                                  GCompareDataFunc  func,
66                                                  gpointer          user_data);
67 gpointer     g_async_queue_pop                  (GAsyncQueue      *queue);
68 gpointer     g_async_queue_pop_unlocked         (GAsyncQueue      *queue);
69 gpointer     g_async_queue_try_pop              (GAsyncQueue      *queue);
70 gpointer     g_async_queue_try_pop_unlocked     (GAsyncQueue      *queue);
71 gpointer     g_async_queue_timed_pop            (GAsyncQueue      *queue,
72                                                  GTimeVal         *end_time);
73 gpointer     g_async_queue_timed_pop_unlocked   (GAsyncQueue      *queue,
74                                                  GTimeVal         *end_time);
75 gint         g_async_queue_length               (GAsyncQueue      *queue);
76 gint         g_async_queue_length_unlocked      (GAsyncQueue      *queue);
77 void         g_async_queue_sort                 (GAsyncQueue      *queue,
78                                                  GCompareDataFunc  func,
79                                                  gpointer          user_data);
80 void         g_async_queue_sort_unlocked        (GAsyncQueue      *queue,
81                                                  GCompareDataFunc  func,
82                                                  gpointer          user_data);
83
84 G_END_DECLS
85
86 #endif /* __G_ASYNCQUEUE_H__ */