Changeset 9fa16b20 in mainline for arch/ia32/src/proc/task.c


Ignore:
Timestamp:
2006-04-17T15:45:38Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
73e9b49
Parents:
97a7eff
Message:

Fix amd64 and ia32 management of I/O bitmap in before_task_runs_arch()
by treating the iomap array as a bitmap. Make use of the bitmap type
and functions added in previous commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/proc/task.c

    r97a7eff r9fa16b20  
    2929#include <proc/task.h>
    3030#include <arch/types.h>
     31#include <adt/bitmap.h>
    3132
    3233/** Perform ia32 specific task initialization.
     
    3637void task_create_arch(task_t *t)
    3738{
    38         t->arch.iomap = NULL;
    39         t->arch.iomap_size = 0;
     39        bitmap_initialize(&t->arch.iomap, NULL, 0);
    4040}
Note: See TracChangeset for help on using the changeset viewer.