File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
ndk/sources/android/libportable/arch-mips Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -1027,7 +1027,7 @@ static int sigaction_flags_pton(int portable_flags)
1027
1027
ALOGV ("%s: SA_THIRTYTWO_PORTABLE isn't SUPPORTED." , __func__ );
1028
1028
}
1029
1029
if (portable_flags & SA_RESTORER_PORTABLE ) {
1030
- mips_flags |= SA_RESTORER ;
1030
+ ALOGV ( "%s: SA_RESTORER isn't SUPPORTED." , __func__ ) ;
1031
1031
}
1032
1032
if (portable_flags & SA_ONSTACK_PORTABLE ) {
1033
1033
mips_flags |= SA_ONSTACK ;
@@ -1059,7 +1059,6 @@ int sigaction_flags_ntop(int mips_flags)
1059
1059
#ifdef SA_THIRTYTWO
1060
1060
if (mips_flags & SA_THIRTYTWO ) portable_flags |= SA_THIRTYTWO_PORTABLE ;
1061
1061
#endif
1062
- if (mips_flags & SA_RESTORER ) portable_flags |= SA_RESTORER_PORTABLE ;
1063
1062
if (mips_flags & SA_ONSTACK ) portable_flags |= SA_ONSTACK_PORTABLE ;
1064
1063
if (mips_flags & SA_RESTART ) portable_flags |= SA_RESTART_PORTABLE ;
1065
1064
if (mips_flags & SA_NODEFER ) portable_flags |= SA_NODEFER_PORTABLE ;
You can’t perform that action at this time.
0 commit comments