方法

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() 相反,此函数将新项目推送到已经位于队列中的项目之前,因此它将是下一个从队列中弹出的项。

必须要在保持 queues lock 的同时调用此函数。

自:2.46

参数

item

类型: gpointer

要推入 queue 的数据。

数据由方法调用者拥有。