Changeset 31e8ddd in mainline for arch/amd64/src/proc/task.c
- Timestamp:
- 2006-06-05T17:25:37Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2569ec90
- Parents:
- 9c1c6771
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/proc/task.c
r9c1c6771 r31e8ddd 28 28 29 29 #include <proc/task.h> 30 #include <mm/slab.h> 30 31 #include <arch/types.h> 31 32 … … 39 40 bitmap_initialize(&t->arch.iomap, NULL, 0); 40 41 } 42 43 /** Perform amd64 specific task destruction. 44 * 45 * @param t Task to be initialized. 46 */ 47 void task_destroy_arch(task_t *t) 48 { 49 if (t->arch.iomap.map) 50 free(t->arch.iomap.map); 51 }
Note:
See TracChangeset
for help on using the changeset viewer.