mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-14 22:37:15 +01:00
We want the next and prev pointer of the inserted link to be NULL.
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We want the next and prev pointer of the inserted link to be NULL.
This commit is contained in:
parent
8fded00959
commit
3540769b17
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -1,3 +1,8 @@
|
||||
2000-03-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
|
||||
want the next and prev pointer of the inserted link to be NULL.
|
||||
|
||||
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Another small change to the pthread_.. search
|
||||
|
@ -87,8 +87,8 @@ g_queue_push_head_link (GQueue *queue,
|
||||
{
|
||||
g_return_if_fail (queue != NULL);
|
||||
g_return_if_fail (link != NULL);
|
||||
g_return_if_fail (link->prev != NULL);
|
||||
g_return_if_fail (link->next != NULL);
|
||||
g_return_if_fail (link->prev == NULL);
|
||||
g_return_if_fail (link->next == NULL);
|
||||
|
||||
link->next = queue->head;
|
||||
if (queue->head)
|
||||
@ -119,8 +119,8 @@ g_queue_push_tail_link (GQueue *queue,
|
||||
{
|
||||
g_return_if_fail (queue != NULL);
|
||||
g_return_if_fail (link != NULL);
|
||||
g_return_if_fail (link->prev != NULL);
|
||||
g_return_if_fail (link->next != NULL);
|
||||
g_return_if_fail (link->prev == NULL);
|
||||
g_return_if_fail (link->next == NULL);
|
||||
|
||||
link->prev = queue->tail;
|
||||
if (queue->tail)
|
||||
|
8
gqueue.c
8
gqueue.c
@ -87,8 +87,8 @@ g_queue_push_head_link (GQueue *queue,
|
||||
{
|
||||
g_return_if_fail (queue != NULL);
|
||||
g_return_if_fail (link != NULL);
|
||||
g_return_if_fail (link->prev != NULL);
|
||||
g_return_if_fail (link->next != NULL);
|
||||
g_return_if_fail (link->prev == NULL);
|
||||
g_return_if_fail (link->next == NULL);
|
||||
|
||||
link->next = queue->head;
|
||||
if (queue->head)
|
||||
@ -119,8 +119,8 @@ g_queue_push_tail_link (GQueue *queue,
|
||||
{
|
||||
g_return_if_fail (queue != NULL);
|
||||
g_return_if_fail (link != NULL);
|
||||
g_return_if_fail (link->prev != NULL);
|
||||
g_return_if_fail (link->next != NULL);
|
||||
g_return_if_fail (link->prev == NULL);
|
||||
g_return_if_fail (link->next == NULL);
|
||||
|
||||
link->prev = queue->tail;
|
||||
if (queue->tail)
|
||||
|
Loading…
x
Reference in New Issue
Block a user