Explorar el Código

Output error message to stdout in case of execv failure.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@113 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz hace 8 años
padre
commit
4f5cbfdfd3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      child.cpp

+ 1
- 1
child.cpp Ver fichero

@@ -1254,7 +1254,7 @@ namespace CodeDweller {
errMsg = "Error (from exec) running the command \"";
errMsg += execvArgv[0];
errMsg += "\": " + getErrorText();
iDummy = ::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
::write(STDOUT_FILENO, errMsg.data(), errMsg.size());
exit(-1);
}

Cargando…
Cancelar
Guardar