Ver código fonte
fixes WiringPi/WiringPi#100 (#101)
Replaces a bare wait() with waitpid() to only wait on the just-forked process.
pull/102/head
freddyrios
3 anos atrás
committed by
GitHub
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com
1 adições e
1 exclusões
-
wiringPi/wiringPi.c
|
|
@@ -2049,7 +2049,7 @@ int wiringPiISR (int pin, int mode, void (*function)(void)) |
|
|
|
return wiringPiFailure (WPI_FATAL, "wiringPiISR: Can't find gpio program\n") ; |
|
|
|
} |
|
|
|
else // Parent, wait |
|
|
|
wait (NULL) ; |
|
|
|
waitpid (pid, NULL, 0) ; |
|
|
|
} |
|
|
|
|
|
|
|
// Now pre-open the /sys/class node - but it may already be open if |
|
|
|