方法
GLibAsyncQueuepush_front_unlocked
自:2.46
声明 [src]
void
g_async_queue_push_front_unlocked (
GAsyncQueue* queue,
gpointer item
)
描述 [src]
将 item
推入 queue
中。 item
不能为 NULL
。与 g_async_queue_push_unlocked() 相反,此函数将新项目推送到已经位于队列中的项目之前,因此它将是下一个从队列中弹出的项。
必须要在保持 queue
‘s lock 的同时调用此函数。
自:2.46