Make last changes...
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar> Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
This commit is contained in:
parent
cf60bc8824
commit
4b0cff4e85
23
master.c
23
master.c
|
@ -32,20 +32,16 @@ int main(int argc, char *argv[]) {
|
|||
slaveNum = (slaveNum == 0 ? 1 : slaveNum);
|
||||
slaveNum = (slaveNum < MAX_SLAVES ? slaveNum : MAX_SLAVES);
|
||||
|
||||
FILE * outputFile;
|
||||
if ((outputFile = fopen(OUTPUT_NAME, "w")) == NULL)
|
||||
printSystemError("fopen() -- ERROR");
|
||||
|
||||
char * shmPointer, * shmStart;
|
||||
int totalSize = (argc - 1) * MAX_OUTPUT_SIZE;
|
||||
int shmFd;
|
||||
|
||||
printf("%d\n%d\n", argc - 1, getpid());
|
||||
|
||||
addSignalHandler(changeViewFlag);
|
||||
sleep(5);
|
||||
blockSignal();
|
||||
|
||||
char * shmPointer, * shmStart;
|
||||
int totalSize = (argc - 1) * MAX_OUTPUT_SIZE;
|
||||
int shmFd;
|
||||
|
||||
if (viewLinked) {
|
||||
shmFd = createShm(totalSize);
|
||||
mapShm(&shmPointer, totalSize, shmFd);
|
||||
|
@ -60,6 +56,10 @@ int main(int argc, char *argv[]) {
|
|||
sendTask(argv[tasks], pipesInput, j++);
|
||||
}
|
||||
|
||||
FILE * outputFile;
|
||||
if ((outputFile = fopen(OUTPUT_NAME, "w")) == NULL)
|
||||
printSystemError("fopen() -- ERROR");
|
||||
|
||||
fd_set pipesOutputSet;
|
||||
FD_ZERO(&pipesOutputSet);
|
||||
|
||||
|
@ -170,6 +170,13 @@ void createPipesAndSlaves(int pipesOutput[slaveNum][2], int pipesInput[slaveNum]
|
|||
if (close(pipesInput[i][0]) < 0)
|
||||
printSystemError("close() -- ERROR");
|
||||
|
||||
for (int j = 0; j < i; j++) {
|
||||
if (close(pipesInput[j][1]) < 0)
|
||||
printSystemError("close() -- ERROR");
|
||||
if (close(pipesOutput[j][0]) < 0)
|
||||
printSystemError("close() -- ERROR");
|
||||
}
|
||||
|
||||
char * params[] = {"slave.o", NULL};
|
||||
if (execv("slave.o", params) < 0)
|
||||
printSystemError("execv() -- ERROR");
|
||||
|
|
Loading…
Reference in New Issue