This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/examples/mcat.c

46 lines
855 B
C
Executable File

/* mcat.c
Prints files specified on command line to the console, using
mmap. */
#include <stdio.h>
#include <syscall.h>
int
main (int argc, char *argv[])
{
int i;
for (i = 1; i < argc; i++)
{
int fd;
mapid_t map;
void *data = (void *) 0x10000000;
int size;
/* Open input file. */
fd = open (argv[i]);
if (fd < 0)
{
printf ("%s: open failed\n", argv[i]);
return EXIT_FAILURE;
}
size = filesize (fd);
/* Map files. */
map = mmap (fd, data);
if (map == MAP_FAILED)
{
printf ("%s: mmap failed\n", argv[i]);
return EXIT_FAILURE;
}
/* Write file to console. */
write (STDOUT_FILENO, data, size);
/* Unmap files (optional). */
munmap (map);
}
return EXIT_SUCCESS;
}