Skip to content

Commit

Permalink
Change the wait3() implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
wf9a5m75 committed Jan 4, 2018
1 parent 08bb469 commit 4179fa0
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion redis-android/src/main/jni/redis-4.0.6/src/wait3.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "wait3.h"

pid_t wait3(int* status, int options, struct rusage* usage) {
return wait4(-1, status, options, usage);
return waitpid(-1, status, options);
}
6 changes: 3 additions & 3 deletions redis-android/src/main/jni/release.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#define REDIS_GIT_SHA1 "5936b3a6"
#define REDIS_GIT_DIRTY " 47"
#define REDIS_BUILD_ID "masashi-macgms.local-1514419258"
#define REDIS_GIT_SHA1 "894ddc08"
#define REDIS_GIT_DIRTY " 80"
#define REDIS_BUILD_ID "masashi-macgms.local-1515026948"
Binary file modified redis-android/src/main/libs/arm64-v8a/libredis.so
Binary file not shown.
Binary file modified redis-android/src/main/libs/armeabi-v7a/libredis.so
Binary file not shown.
Binary file modified redis-android/src/main/libs/x86/libredis.so
Binary file not shown.
Binary file modified redis-android/src/main/libs/x86_64/libredis.so
Binary file not shown.

0 comments on commit 4179fa0

Please sign in to comment.