diff options
author | Neal H. Walfield <neal@gnu.org> | 2008-11-11 11:28:06 +0100 |
---|---|---|
committer | Neal H. Walfield <neal@gnu.org> | 2008-11-11 11:28:06 +0100 |
commit | 104c0cef4e9fc9ce7e3965d6263f3530c7a38f04 (patch) | |
tree | e6989680b774d93d3f252a34f47e9feec590a432 | |
parent | b0c57e38ca5ec410ef0d2b9604cf3d2912a1a549 (diff) |
Add frames to the right end of the inactive and active lists.
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.
-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; |