Subversion Repositories HelenOS-historic

Rev

Rev 1185 | Rev 1257 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1185 Rev 1201
Line 26... Line 26...
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#include <proc/task.h>
29
#include <proc/task.h>
30
#include <arch/types.h>
30
#include <arch/types.h>
-
 
31
#include <adt/bitmap.h>
31
 
32
 
32
/** Perform ia32 specific task initialization.
33
/** Perform ia32 specific task initialization.
33
 *
34
 *
34
 * @param t Task to be initialized.
35
 * @param t Task to be initialized.
35
 */
36
 */
36
void task_create_arch(task_t *t)
37
void task_create_arch(task_t *t)
37
{
38
{
38
    t->arch.iomap = NULL;
39
    bitmap_initialize(&t->arch.iomap, NULL, 0);
39
    t->arch.iomap_size = 0;
-
 
40
}
40
}