* [Xenomai-core] Xenomai v2.2.5
@ 2006-11-05 18:09 Philippe Gerum
2006-11-07 6:32 ` Li Yi (Adam)
0 siblings, 1 reply; 5+ messages in thread
From: Philippe Gerum @ 2006-11-05 18:09 UTC (permalink / raw)
To: xenomai
Here is the fifth maintenance release for the v2.2.x branch. Short
log follows:
[nucleus]
* Fix period validity check when setting up the timer for
periodic timing mode.
[hal]
* ppc: Define special wrappers to get/put_user macros which
bypass the might_sleep() checks. Upgrade Adeos support.
* x86: Upgrade Adeos support.
* arm: Upgrade Adeos support.
[native]
* Fix rt_queue_send() upon null broadcast (wrong reference
count).
[posix]
* Make sure to read interrupt-related macros from the core
headers when including posix/pthread.h from user-space.
See the ChangeLog for details.
http://download.gna.org/xenomai/stable/xenomai-2.2.5.tar.bz2
--
Philippe.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] Xenomai v2.2.5
2006-11-05 18:09 [Xenomai-core] Xenomai v2.2.5 Philippe Gerum
@ 2006-11-07 6:32 ` Li Yi (Adam)
2006-11-07 6:55 ` Philippe Gerum
0 siblings, 1 reply; 5+ messages in thread
From: Li Yi (Adam) @ 2006-11-07 6:32 UTC (permalink / raw)
To: rpm; +Cc: xenomai, xenomai
[-- Attachment #1: Type: text/plain, Size: 1347 bytes --]
Hi Philippe,
Not sure you have noticed this typo or not:
xenomai-2.2.5/ksrc/skins/posix/syscall.c
2674: nt __pse51_call_not_available(struct task_struct *curr, struct pt_regs
*regs)
should be:
int __pse51_call_not_available(struct task_struct *curr, struct pt_regs
*regs)
Regards,
-Yi
On 11/6/06, Philippe Gerum <rpm@xenomai.org> wrote:
>
>
> Here is the fifth maintenance release for the v2.2.x branch. Short
> log follows:
>
> [nucleus]
>
> * Fix period validity check when setting up the timer for
> periodic timing mode.
>
> [hal]
>
> * ppc: Define special wrappers to get/put_user macros which
> bypass the might_sleep() checks. Upgrade Adeos support.
>
> * x86: Upgrade Adeos support.
>
> * arm: Upgrade Adeos support.
>
> [native]
>
> * Fix rt_queue_send() upon null broadcast (wrong reference
> count).
>
> [posix]
>
> * Make sure to read interrupt-related macros from the core
> headers when including posix/pthread.h from user-space.
>
>
> See the ChangeLog for details.
>
> http://download.gna.org/xenomai/stable/xenomai-2.2.5.tar.bz2
>
>
> --
> Philippe.
>
>
>
> _______________________________________________
> Xenomai-core mailing list
> Xenomai-core@domain.hid
> https://mail.gna.org/listinfo/xenomai-core
>
[-- Attachment #2: Type: text/html, Size: 2479 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] Xenomai v2.2.5
2006-11-07 6:32 ` Li Yi (Adam)
@ 2006-11-07 6:55 ` Philippe Gerum
2006-11-08 8:53 ` Li Yi (Adam)
0 siblings, 1 reply; 5+ messages in thread
From: Philippe Gerum @ 2006-11-07 6:55 UTC (permalink / raw)
To: Li Yi (Adam); +Cc: xenomai, xenomai
On Tue, 2006-11-07 at 14:32 +0800, Li Yi (Adam) wrote:
> Hi Philippe,
>
> Not sure you have noticed this typo or not:
>
> xenomai-2.2.5/ksrc/skins/posix/syscall.c
>
> 2674: nt __pse51_call_not_available(struct task_struct *curr, struct
> pt_regs *regs)
>
> should be:
>
> int __pse51_call_not_available(struct task_struct *curr, struct
> pt_regs *regs)
>
Fixed, thanks.
> Regards,
>
> -Yi
>
>
>
> On 11/6/06, Philippe Gerum <rpm@xenomai.org> wrote:
>
> Here is the fifth maintenance release for the v2.2.x
> branch. Short
> log follows:
>
> [nucleus]
>
> * Fix period validity check when setting up the timer
> for
> periodic timing mode.
>
> [hal]
>
> * ppc: Define special wrappers to get/put_user macros
> which
> bypass the might_sleep() checks. Upgrade Adeos
> support.
>
> * x86: Upgrade Adeos support.
>
> * arm: Upgrade Adeos support.
>
> [native]
>
> * Fix rt_queue_send() upon null broadcast (wrong
> reference
> count).
>
> [posix]
>
> * Make sure to read interrupt-related macros from the
> core
> headers when including posix/pthread.h from
> user-space.
>
>
> See the ChangeLog for details.
>
> http://download.gna.org/xenomai/stable/xenomai-2.2.5.tar.bz2
>
>
> --
> Philippe.
>
>
>
> _______________________________________________
> Xenomai-core mailing list
> Xenomai-core@domain.hid
> https://mail.gna.org/listinfo/xenomai-core
>
--
Philippe.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] Xenomai v2.2.5
2006-11-07 6:55 ` Philippe Gerum
@ 2006-11-08 8:53 ` Li Yi (Adam)
2006-11-10 9:22 ` Philippe Gerum
0 siblings, 1 reply; 5+ messages in thread
From: Li Yi (Adam) @ 2006-11-08 8:53 UTC (permalink / raw)
To: rpm; +Cc: xenomai, xenomai
[-- Attachment #1: Type: text/plain, Size: 2152 bytes --]
Another typo in xenomai-2.2.5/ksrc/drivers/testing/timerbench.c:
412:
printk("%s: bad ioctl code (0x%x)\n", _ _FUNCTION_, request);
should be:
printk("%s: bad ioctl code (0x%x)\n", _ _FUNCTION_ _, request);
-Yi
On 11/7/06, Philippe Gerum <rpm@xenomai.org> wrote:
>
> On Tue, 2006-11-07 at 14:32 +0800, Li Yi (Adam) wrote:
> > Hi Philippe,
> >
> > Not sure you have noticed this typo or not:
> >
> > xenomai-2.2.5/ksrc/skins/posix/syscall.c
> >
> > 2674: nt __pse51_call_not_available(struct task_struct *curr, struct
> > pt_regs *regs)
> >
> > should be:
> >
> > int __pse51_call_not_available(struct task_struct *curr, struct
> > pt_regs *regs)
> >
>
> Fixed, thanks.
>
> > Regards,
> >
> > -Yi
> >
> >
> >
> > On 11/6/06, Philippe Gerum <rpm@xenomai.org> wrote:
> >
> > Here is the fifth maintenance release for the v2.2.x
> > branch. Short
> > log follows:
> >
> > [nucleus]
> >
> > * Fix period validity check when setting up the timer
> > for
> > periodic timing mode.
> >
> > [hal]
> >
> > * ppc: Define special wrappers to get/put_user macros
> > which
> > bypass the might_sleep() checks. Upgrade Adeos
> > support.
> >
> > * x86: Upgrade Adeos support.
> >
> > * arm: Upgrade Adeos support.
> >
> > [native]
> >
> > * Fix rt_queue_send() upon null broadcast (wrong
> > reference
> > count).
> >
> > [posix]
> >
> > * Make sure to read interrupt-related macros from the
> > core
> > headers when including posix/pthread.h from
> > user-space.
> >
> >
> > See the ChangeLog for details.
> >
> > http://download.gna.org/xenomai/stable/xenomai-2.2.5.tar.bz2
> >
> >
> > --
> > Philippe.
> >
> >
> >
> > _______________________________________________
> > Xenomai-core mailing list
> > Xenomai-core@domain.hid
> > https://mail.gna.org/listinfo/xenomai-core
> >
> --
> Philippe.
>
>
>
[-- Attachment #2: Type: text/html, Size: 4802 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Xenomai-core] Xenomai v2.2.5
2006-11-08 8:53 ` Li Yi (Adam)
@ 2006-11-10 9:22 ` Philippe Gerum
0 siblings, 0 replies; 5+ messages in thread
From: Philippe Gerum @ 2006-11-10 9:22 UTC (permalink / raw)
To: Li Yi (Adam); +Cc: xenomai, xenomai
On Wed, 2006-11-08 at 16:53 +0800, Li Yi (Adam) wrote:
> Another typo in xenomai-2.2.5/ksrc/drivers/testing/timerbench.c:
>
> 412:
> printk("%s: bad ioctl code (0x%x)\n", _ _FUNCTION_, request);
> should be:
> printk("%s: bad ioctl code (0x%x)\n", _ _FUNCTION_ _, request);
>
Yeah, rainy day indeed... Both fixed in the download area too. Thanks.
> -Yi
>
> On 11/7/06, Philippe Gerum <rpm@xenomai.org> wrote:
> On Tue, 2006-11-07 at 14:32 +0800, Li Yi (Adam) wrote:
> > Hi Philippe,
> >
> > Not sure you have noticed this typo or not:
> >
> > xenomai-2.2.5/ksrc/skins/posix/syscall.c
> >
> > 2674: nt __pse51_call_not_available(struct task_struct
> *curr, struct
> > pt_regs *regs)
> >
> > should be:
> >
> > int __pse51_call_not_available(struct task_struct *curr,
> struct
> > pt_regs *regs)
> >
>
> Fixed, thanks.
>
> > Regards,
> >
> > -Yi
> >
> >
> >
> > On 11/6/06, Philippe Gerum <rpm@xenomai.org> wrote:
> >
> > Here is the fifth maintenance release for the v2.2.x
> > branch. Short
> > log follows:
> >
> > [nucleus]
> >
> > * Fix period validity check when setting up
> the timer
> > for
> > periodic timing mode.
> >
> > [hal]
> >
> > * ppc: Define special wrappers to
> get/put_user macros
> > which
> > bypass the might_sleep() checks. Upgrade
> Adeos
> > support.
> >
> > * x86: Upgrade Adeos support.
> >
> > * arm: Upgrade Adeos support.
> >
> > [native]
> >
> > * Fix rt_queue_send() upon null broadcast
> (wrong
> > reference
> > count).
> >
> > [posix]
> >
> > * Make sure to read interrupt-related macros
> from the
> > core
> > headers when including posix/pthread.h from
> > user-space.
> >
> >
> > See the ChangeLog for details.
> >
> >
> http://download.gna.org/xenomai/stable/xenomai-2.2.5.tar.bz2
> >
> >
> > --
> > Philippe.
> >
> >
> >
> > _______________________________________________
> > Xenomai-core mailing list
> > Xenomai-core@domain.hid
> > https://mail.gna.org/listinfo/xenomai-core
> >
> --
> Philippe.
>
>
>
--
Philippe.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-11-10 9:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-05 18:09 [Xenomai-core] Xenomai v2.2.5 Philippe Gerum
2006-11-07 6:32 ` Li Yi (Adam)
2006-11-07 6:55 ` Philippe Gerum
2006-11-08 8:53 ` Li Yi (Adam)
2006-11-10 9:22 ` Philippe Gerum
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.