-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest1.c
36 lines (36 loc) · 1.04 KB
/
test1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "fs.h"
struct file fileTable[100];
int fileTableCount=0;
struct d_super_block super_block;
int main(char argc,char *argv[])
{
char *a=malloc(1);
printf("%p\n%d\n",a,a);
// char *a;
// struct d_inode *inode0;
// struct d_inode *inode1;
// int fd;
// char buf[BLOCKSIZE];
// struct dir dir;
// int my_fd;
// char *str = "hello world\n";
// //chdir("/home/zmz/fileSys");
// chdir("/home/zmz/fileSys/build/linux/x86_64/release");
// if ((fd = open(argv[1], O_RDWR)) == -1)
// {
// printf("open error\n");
// return -1;
// }
// // my_namei(fd, "/");
// my_iget(fd,0);
// printf("path:\n");
// fflush(stdout);
// a = malloc(1);
// a = malloc(1);
// //a = malloc(sizeof(struct d_inode));
// // inode0 = (struct d_inode *)malloc(sizeof(struct d_inode));
// // inode1 = (struct d_inode *)malloc(sizeof(struct d_inode));
// // printf("xinode:%d\n", inode0->i_cnt);
// // printf("xinode:%d\n", inode1->i_cnt);
// fflush(stdout);
}