delete printf

This commit is contained in:
zhouwy2115 2020-04-08 21:40:14 +08:00 committed by Dun Liang
parent 5bb3f60393
commit ac4198d372
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ int lock()
{
return -1;
}
printf("Pid: %ld process lock to write the file.\n", (long)getpid());
// printf("Pid: %ld process lock to write the file.\n", (long)getpid());
return 0;
}
@ -59,7 +59,7 @@ int unlock()
{
return -1;
}
printf("Pid: %ld process release the file.\n", (long)getpid());
// printf("Pid: %ld process release the file.\n", (long)getpid());
return 0;
}