|
@@ -5,6 +5,7 @@
|
|
|
#include <stdio.h>
|
|
|
#include <unistd.h>
|
|
|
#include <sys/select.h>
|
|
|
+#include <sys/wait.h>
|
|
|
#include <sprog.h>
|
|
|
|
|
|
void sprog_process(const struct sprog_family *fam, void *arg, int nstdin, int nstdout);
|
|
@@ -35,15 +36,17 @@ void sprog_communicate(const struct sprog_family *fam, const char *port, int bau
|
|
|
if(pid<0)
|
|
|
sprog_error("Unable to fork: %s\n", strerror(errno));
|
|
|
else {
|
|
|
- if(pid==0) {
|
|
|
+ if(pid!=0) {
|
|
|
close(pstdin[0]);
|
|
|
close(pstdout[1]);
|
|
|
- serial_communicate(&dev, pstdout[0], pstdin[1]);
|
|
|
+ /* serial_communicate(&dev, pstdout[0], pstdin[1]); */
|
|
|
+ waitpid(pid, NULL, 0);
|
|
|
fam->close(arg);
|
|
|
} else {
|
|
|
close(pstdin[1]);
|
|
|
close(pstdout[0]);
|
|
|
- sprog_process(fam, arg, pstdin[0], pstdout[1]);
|
|
|
+ /* sprog_process(fam, arg, pstdin[0], pstdout[1]); */
|
|
|
+ sprog_process(fam, arg, dev.fd, dev.fd);
|
|
|
}
|
|
|
}
|
|
|
}
|