ソースを参照

Return error from `softPwmCreate` if `pthread_create` fails

If `pthread_create` fails, `newPin` will never get reset to -1 and process would hang. This change will return from `softPwmCreate` immediately if  `pthread_create` returns a non-zero value and avoid hanging forever.
pull/115/head
Peter Kovary 3年前
committed by GitHub
コミット
772e1198dd
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更3行の追加0行の削除
  1. +3
    -0
      wiringPi/softPwm.c

+ 3
- 0
wiringPi/softPwm.c ファイルの表示

@@ -153,6 +153,9 @@ int softPwmCreate (int pin, int initialValue, int pwmRange)
newPin = pin ;
res = pthread_create (&myThread, NULL, softPwmThread, (void *)passPin) ;

if (res != 0)
return res ;
while (newPin != -1)
delay (1) ;



読み込み中…
キャンセル
保存