Removed vm_object printfs that were for testing exit().

File open was failing when using 2 files with same name. TODO: Look at it in the future.
Need to increase writeable file size in fs0. 16 pages don't work.
This commit is contained in:
Bahadir Balban
2008-11-07 16:26:07 +02:00
parent 40ccc642f9
commit 1ddd7ac9c2
3 changed files with 5 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ int mmaptest(void)
void *base;
int x = 0x1000;
if ((fd = open("./newfile.txt", O_CREAT | O_TRUNC | O_RDWR, S_IRWXU)) < 0)
if ((fd = open("./newfile3.txt", O_CREAT | O_TRUNC | O_RDWR, S_IRWXU)) < 0)
perror("open:");
else
printf("open: Success.\n");