From: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
To: Jan Kiszka <jan.kiszka@domain.hid>
Cc: xenomai-core <xenomai@xenomai.org>
Subject: Re: [Xenomai-core] [Xenomai-git] posix: fix pthread_cond_*wait return value overwriting
Date: Mon, 08 Mar 2010 18:47:11 +0100 [thread overview]
Message-ID: <4B95381F.9090302@domain.hid> (raw)
In-Reply-To: <4B953647.9040005@domain.hid>
Jan Kiszka wrote:
> Gilles Chanteperdrix wrote:
>> Jan Kiszka wrote:
>>> xenomai-git-request@domain.hid wrote:
>>>> diff --git a/ksrc/skins/posix/syscall.c b/ksrc/skins/posix/syscall.c
>>>> index 6c3ec3a..2a97a2d 100644
>>>> --- a/ksrc/skins/posix/syscall.c
>>>> +++ b/ksrc/skins/posix/syscall.c
>>>> @@ -1520,7 +1520,7 @@ static int __pthread_cond_wait_prologue(struct pt_regs *regs)
>>>> union __xeno_mutex mx, *umx;
>>>> unsigned timed, count;
>>>> struct timespec ts;
>>>> - int err;
>>>> + int err, perr = 0;
>>>>
>>>> ucnd = (union __xeno_cond *)__xn_reg_arg1(regs);
>>>> umx = (union __xeno_mutex *)__xn_reg_arg2(regs);
>>>> @@ -1560,7 +1560,10 @@ static int __pthread_cond_wait_prologue(struct pt_regs *regs)
>>>> &mx.shadow_mutex,
>>>> &count, timed, XN_INFINITE);
>>>>
>>>> - if (err == 0 || err == ETIMEDOUT) {
>>>> + switch(err) {
>>>> + case 0:
>>>> + case ETIMEDOUT:
>>>> + perr = errno = err;
>>>> err = -pse51_cond_timedwait_epilogue(cur, &cnd.shadow_cond,
>>>> &mx.shadow_mutex, count);
>>>> if (err == 0 &&
>>>> @@ -1569,14 +1572,20 @@ static int __pthread_cond_wait_prologue(struct pt_regs *regs)
>>>> &mx.shadow_mutex.lockcnt,
>>>> sizeof(umx->shadow_mutex.lockcnt)))
>>>> return -EFAULT;
>>>> + break;
>>>> +
>>>> + case EINTR:
>>>> + perr = err;
>>> Minor cleanup: This is not needed as err != 0, so perr will not be
>>> evaluated anymore. Same for native.
>> No, err may be 0, if the epilogue returns 0.
>>
>> The following table should explains how I came to this solution:
>>
>> perr err wanted err == 0 ? perr : err
>> 0 0 0 0
>> 0 EINTR EINTR EINTR
>> 0 * * *
>> ETIMEDOUT 0 ETIMEDOUT ETIMEDOUNT
>> ETIMEDOUT EINTR EINTR EINTR
>> (epi ETIMEDOUT)
>> ETIMEDOUT * * *
>> EINTR -(perr) EINTR EINTR
>> * -(perr) * *
>>
>
> Right for my second suggestion. But err = [-]EINTR from the prologue
> will remain != 0.
Yes, Ok. Maybe a (failed) attempt to get gcc to stop whining about perr
being used non-initialized, which remained in the way. Which I finally
solved by initializing the local variable with 0.
--
Gilles.
prev parent reply other threads:[~2010-03-08 17:47 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.4536.1268063545.8399.xenomai-git@xenomai.org>
2010-03-08 17:28 ` [Xenomai-core] [Xenomai-git] posix: fix pthread_cond_*wait return value overwriting Jan Kiszka
2010-03-08 17:31 ` Jan Kiszka
2010-03-08 17:35 ` Gilles Chanteperdrix
2010-03-08 17:39 ` Jan Kiszka
2010-03-08 17:47 ` Gilles Chanteperdrix [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B95381F.9090302@domain.hid \
--to=gilles.chanteperdrix@xenomai.org \
--cc=jan.kiszka@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.