c24ac5d763
that they can be different. Clean up mkfs, simplifying specifying fs parameters, remove some redundancy between fs and mkfs, and fix disk layout bugs. Call blocks in the file system blocks instead of sectors. Passes usertests for different block sizes.
18 lines
232 B
C
18 lines
232 B
C
#include "types.h"
|
|
#include "stat.h"
|
|
#include "user.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int i;
|
|
|
|
if(argc < 2){
|
|
printf(2, "usage: kill pid...\n");
|
|
exit();
|
|
}
|
|
for(i=1; i<argc; i++)
|
|
kill(atoi(argv[i]));
|
|
exit();
|
|
}
|