diff options
-rw-r--r-- | viengoos/ChangeLog | 6 | ||||
-rw-r--r-- | viengoos/ager.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/viengoos/ChangeLog b/viengoos/ChangeLog index bdefa45..16f6e11 100644 --- a/viengoos/ChangeLog +++ b/viengoos/ChangeLog @@ -1,11 +1,11 @@ 2008-11-11 Neal H. Walfield <neal@gnu.org> - * object.c (object_desc_claim): Fix typo. + * ager.c (ager_loop): Add frames to the end of the active or + inactive list, not the head. 2008-11-11 Neal H. Walfield <neal@gnu.org> - * ager.c (ager_loop): Add frames to the end of the active or - inactive list, not the head. + * object.c (object_desc_claim): Fix typo. 2008-11-04 Neal H. Walfield <neal@gnu.org> diff --git a/viengoos/ager.c b/viengoos/ager.c index 65cbf43..151ce4d 100644 --- a/viengoos/ager.c +++ b/viengoos/ager.c @@ -618,7 +618,7 @@ ager_loop (void) int priority = desc->policy.priority; activity_list_unlink (&desc->activity->frames[priority].active, desc); - activity_list_push + activity_list_queue (&desc->activity->frames[priority].inactive, desc); } else @@ -641,7 +641,7 @@ ager_loop (void) int priority = desc->policy.priority; activity_list_unlink (&desc->activity->frames[priority].inactive, desc); - activity_list_push + activity_list_queue (&desc->activity->frames[priority].active, desc); desc->dirty |= dirty; |