特點
特點
struct Glist
表示節點, 用法較接近C++ std::liststruct _GList
{
gpointer data;
GList *next;
GList *prev;
};
特點
API
// create
GAsyncQueue * g_async_queue_new ()
GAsyncQueue * g_async_queue_new_full ()
// operations
void g_async_queue_push ()
void g_async_queue_push_front ()
void g_async_queue_push_sorted () // the queue should be sorted
gpointer g_async_queue_pop () // blocking
gpointer g_async_queue_try_pop () // non-blocking
gpointer g_async_queue_timed_pop ()
gpointer g_async_queue_timeout_pop () // non-blocking
gboolean g_async_queue_remove ()
void g_async_queue_sort ()
gint g_async_queue_length ()
// reference counting
GAsyncQueue * g_async_queue_ref ()
void g_async_queue_unref ()
void g_async_queue_ref_unlocked ()
void g_async_queue_unref_and_unlock ()
// operations for manual lock/unlock
void g_async_queue_lock ()
void g_async_queue_unlock ()
void g_async_queue_push_unlocked ()
void g_async_queue_push_front_unlocked ()
void g_async_queue_push_sorted_unlocked ()
gpointer g_async_queue_pop_unlocked ()
gpointer g_async_queue_try_pop_unlocked ()
gpointer g_async_queue_timed_pop_unlocked ()
gpointer g_async_queue_timeout_pop_unlocked ()
gboolean g_async_queue_remove_unlocked ()
void g_async_queue_sort_unlocked ()
gint g_async_queue_length_unlocked ()