Skip to content

Commit

Permalink
fix: salto de línea en código
Browse files Browse the repository at this point in the history
  • Loading branch information
jesustorresdev committed Aug 20, 2024
1 parent ec4d0ed commit d28e068
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions content/C09-procesos.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -694,14 +694,16 @@ else if (child > 0) <3> <4>
int status;
wait( &status ); <8> <9>
printf( "[PADRE] El valor de salida de mi hijo fue: %d\n", WEXITSTATUS(status) ); <9>
printf( "[PADRE] El valor de salida de mi hijo fue: %d\n",
WEXITSTATUS(status) ); <9>
puts( "[PADRE] ¡Adios!" );
return EXIT_SUCCESS;
}
else { <5>
// Aquí solo entra el padre si no pudo crear el hijo
fprintf( stderr, "Error (%d) al crear el proceso: %s\n", errno, strerror(errno) ); <6>
fprintf( stderr, "Error (%d) al crear el proceso: %s\n",
errno, strerror(errno) ); <6>
return EXIT_FAILURE;
}
----
Expand Down Expand Up @@ -787,7 +789,8 @@ if (child == 0)
execl( "/bin/ls", "ls", "-l", NULL ); <2> <3> <5>
fprintf( stderr, "Error (%d) al ejecutar el programa: %s\n", errno, strerror(errno) ); <6>
fprintf( stderr, "Error (%d) al ejecutar el programa: %s\n",
errno, strerror(errno) ); <6>
return EXIT_FAILURE; <7>
}
else if (child > 0)
Expand All @@ -798,14 +801,16 @@ else if (child > 0)
int status;
wait( &status ); <8>
printf( "[PADRE] El valor de salida de mi hijo fue: %d\n", WEXITSTATUS(status) );
printf( "[PADRE] El valor de salida de mi hijo fue: %d\n",
WEXITSTATUS(status) );
puts( "[PADRE] ¡Adios!" );
return EXIT_SUCCESS;
}
else {
// Aquí solo entra el padre si no pudo crear el hijo
fprintf( stderr, "Error (%d) al crear el proceso: %s\n", errno, strerror(errno) );
fprintf( stderr, "Error (%d) al crear el proceso: %s\n",
errno, strerror(errno) );
return EXIT_FAILURE;
}
----
Expand Down

0 comments on commit d28e068

Please sign in to comment.