[ext2] remove STOP from inode allocator

This commit is contained in:
Kevin Lange 2011-12-05 00:27:25 -06:00
parent a9555e28ce
commit cf6b4081b2
2 changed files with 5 additions and 1 deletions

View File

@ -46,3 +46,8 @@
* Fix user-mode `fork`
* Add user-mode `wait` (with queues!)
* Signals (`signal()`, `kill()`, etc.)
## Signals and Exceptions
SIGDIAF (Die in a fire)

View File

@ -159,7 +159,6 @@ ext2_inodetable_t * ext2_disk_alloc_inode(ext2_inodetable_t * parent, char * nam
kprintf("%d\n", BGD[group].free_inodes_count);
kprintf("\nOkay, writing the block descriptors back to disk.\n");
ext2_disk_write_block(2, (uint8_t *)BGD);
STOP;
kprintf("Alright, we have an inode (%d), time to write it out to disk and make the file in the directory.\n", node_no);
free(inode);
free(bg_buffer);