How to use SIGRTMIN in x86 or armeabi-v7a abi in Android NDK?
I am trying to use SIGRTMIN signal to create blocking signalhandler in Android NDK.
int startThread(){
pthread_t thread;
sigset_t set;
/* Block SIGRTMIN other threads created by main()
will inherit a copy of the signal mask. */
sigemptyset(&set);
int rc = sigaddset(&set, SIGRTMIN);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Return Code:%d",rc);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Error Code:%d",errno);
pthread_sigmask(SIG_BLOCK, &set, NULL);
pthread_create(&thread, NULL, &sig_thread, (void *) &set);
}
static void *sig_thread(void *arg)
{
sigset_t *set = arg;
int s, sig;
for (;;) {
s = sigwait(set, &sig);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Signal handling thread got signal %dn", sig);
}
}
I am getting Return Code as -1 and Error code as 22 (EINVAL - Invalid Argument) while adding signal set sigaddset(&set, SIGRTMIN)
This is happening in x86
or armeabi-v7a
abi. If i use x86_64
then it works.
is there any way to solve this problem or any alternative in x86/armeabi-v7a
abi in Android?
android linux android-ndk pthreads signals
add a comment |
I am trying to use SIGRTMIN signal to create blocking signalhandler in Android NDK.
int startThread(){
pthread_t thread;
sigset_t set;
/* Block SIGRTMIN other threads created by main()
will inherit a copy of the signal mask. */
sigemptyset(&set);
int rc = sigaddset(&set, SIGRTMIN);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Return Code:%d",rc);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Error Code:%d",errno);
pthread_sigmask(SIG_BLOCK, &set, NULL);
pthread_create(&thread, NULL, &sig_thread, (void *) &set);
}
static void *sig_thread(void *arg)
{
sigset_t *set = arg;
int s, sig;
for (;;) {
s = sigwait(set, &sig);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Signal handling thread got signal %dn", sig);
}
}
I am getting Return Code as -1 and Error code as 22 (EINVAL - Invalid Argument) while adding signal set sigaddset(&set, SIGRTMIN)
This is happening in x86
or armeabi-v7a
abi. If i use x86_64
then it works.
is there any way to solve this problem or any alternative in x86/armeabi-v7a
abi in Android?
android linux android-ndk pthreads signals
Are you using an old NDK by any chance?SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition ofSIGRTMIN
for your device.
– Dan Albert
Nov 28 '18 at 0:21
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17
add a comment |
I am trying to use SIGRTMIN signal to create blocking signalhandler in Android NDK.
int startThread(){
pthread_t thread;
sigset_t set;
/* Block SIGRTMIN other threads created by main()
will inherit a copy of the signal mask. */
sigemptyset(&set);
int rc = sigaddset(&set, SIGRTMIN);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Return Code:%d",rc);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Error Code:%d",errno);
pthread_sigmask(SIG_BLOCK, &set, NULL);
pthread_create(&thread, NULL, &sig_thread, (void *) &set);
}
static void *sig_thread(void *arg)
{
sigset_t *set = arg;
int s, sig;
for (;;) {
s = sigwait(set, &sig);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Signal handling thread got signal %dn", sig);
}
}
I am getting Return Code as -1 and Error code as 22 (EINVAL - Invalid Argument) while adding signal set sigaddset(&set, SIGRTMIN)
This is happening in x86
or armeabi-v7a
abi. If i use x86_64
then it works.
is there any way to solve this problem or any alternative in x86/armeabi-v7a
abi in Android?
android linux android-ndk pthreads signals
I am trying to use SIGRTMIN signal to create blocking signalhandler in Android NDK.
int startThread(){
pthread_t thread;
sigset_t set;
/* Block SIGRTMIN other threads created by main()
will inherit a copy of the signal mask. */
sigemptyset(&set);
int rc = sigaddset(&set, SIGRTMIN);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Return Code:%d",rc);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Error Code:%d",errno);
pthread_sigmask(SIG_BLOCK, &set, NULL);
pthread_create(&thread, NULL, &sig_thread, (void *) &set);
}
static void *sig_thread(void *arg)
{
sigset_t *set = arg;
int s, sig;
for (;;) {
s = sigwait(set, &sig);
__android_log_print(ANDROID_LOG_DEBUG, "LOG", "Signal handling thread got signal %dn", sig);
}
}
I am getting Return Code as -1 and Error code as 22 (EINVAL - Invalid Argument) while adding signal set sigaddset(&set, SIGRTMIN)
This is happening in x86
or armeabi-v7a
abi. If i use x86_64
then it works.
is there any way to solve this problem or any alternative in x86/armeabi-v7a
abi in Android?
android linux android-ndk pthreads signals
android linux android-ndk pthreads signals
edited Nov 27 '18 at 1:20
shizhen
4,03441337
4,03441337
asked Nov 26 '18 at 13:15
sunder kandasamysunder kandasamy
707
707
Are you using an old NDK by any chance?SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition ofSIGRTMIN
for your device.
– Dan Albert
Nov 28 '18 at 0:21
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17
add a comment |
Are you using an old NDK by any chance?SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition ofSIGRTMIN
for your device.
– Dan Albert
Nov 28 '18 at 0:21
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17
Are you using an old NDK by any chance?
SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition of SIGRTMIN
for your device.– Dan Albert
Nov 28 '18 at 0:21
Are you using an old NDK by any chance?
SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition of SIGRTMIN
for your device.– Dan Albert
Nov 28 '18 at 0:21
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17
add a comment |
0
active
oldest
votes
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53481948%2fhow-to-use-sigrtmin-in-x86-or-armeabi-v7a-abi-in-android-ndk%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53481948%2fhow-to-use-sigrtmin-in-x86-or-armeabi-v7a-abi-in-android-ndk%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you using an old NDK by any chance?
SIGRTMIN
used to be a constant that would get baked into your application that wouldn't necessarily be correct on new versions of Android. It's since been changed to be a function (with an as correct as possible fallback for pre-L API levels), but if you're using an old NDK it's possible that you have a bad definition ofSIGRTMIN
for your device.– Dan Albert
Nov 28 '18 at 0:21
I am using latest NDK Tool 18.1 and Android 8.0 and 7.0
– sunder kandasamy
Nov 28 '18 at 8:17