All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai] Please pull from xenomai-gch.git
@ 2014-06-01 17:13 Gilles Chanteperdrix
  2014-06-01 18:46 ` Gilles Chanteperdrix
  0 siblings, 1 reply; 3+ messages in thread
From: Gilles Chanteperdrix @ 2014-06-01 17:13 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: Xenomai

The following changes since commit c00754093d283247695356d416608daab0979786:

  cobalt/rtdm/mutex: add fast locking support (2014-05-29 21:33:12 +0200)

are available in the git repository at:

  git://git.xenomai.org/xenomai-gch.git for-forge

for you to fetch changes up to db641276a3c238d1aa30097626e36d698844c679:

  regression: add clock_settime test (2014-06-01 19:05:24 +0200)

----------------------------------------------------------------
Gilles Chanteperdrix (3):
      cobalt/sched: fix compilation without SCHED_QUOTA
      cobalt/timers: avoid periodic timer drift
      regression: add clock_settime test

 include/cobalt/kernel/timer.h              |   60 ++++++---
 kernel/cobalt/clock.c                      |   37 +++---
 kernel/cobalt/posix/sched.c                |    6 +-
 kernel/cobalt/posix/sched.h                |    2 +
 kernel/cobalt/posix/timer.c                |    6 +-
 kernel/cobalt/posix/timerfd.c              |    2 +-
 kernel/cobalt/thread.c                     |    2 +-
 kernel/cobalt/timer.c                      |   44 ++-----
 testsuite/regression/posix/Makefile.am     |    1 +
 testsuite/regression/posix/clock_settime.c |  224 ++++++++++++++++++++++++++++++++
 10 files changed, 317 insertions(+), 67 deletions(-)
 create mode 100644 testsuite/regression/posix/clock_settime.c

-- 
                                                                Gilles.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Xenomai] Please pull from xenomai-gch.git
  2014-06-01 17:13 [Xenomai] Please pull from xenomai-gch.git Gilles Chanteperdrix
@ 2014-06-01 18:46 ` Gilles Chanteperdrix
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Chanteperdrix @ 2014-06-01 18:46 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: Xenomai

On 06/01/2014 07:13 PM, Gilles Chanteperdrix wrote:
> The following changes since commit c00754093d283247695356d416608daab0979786:
> 
>   cobalt/rtdm/mutex: add fast locking support (2014-05-29 21:33:12 +0200)
> 
> are available in the git repository at:
> 
>   git://git.xenomai.org/xenomai-gch.git for-forge

Fixed an issue with debugging, and rebased on forge/next.

The following changes since commit b0d68713102f8ecd81d1c7a4a1ef66d51ac4c99c:

  analogy/testing: continue the main loop until task destruction (2014-05-30 12:59:56 -0400)

are available in the git repository at:

  git://git.xenomai.org/xenomai-gch.git for-forge

for you to fetch changes up to 5fbfaeb911cc590a82f5b713d1231e20ec86a6be:

  regression: add clock_settime test (2014-06-01 20:44:18 +0200)

----------------------------------------------------------------
Gilles Chanteperdrix (3):
      cobalt/sched: fix compilation without SCHED_QUOTA
      cobalt/timers: avoid periodic timer drift
      regression: add clock_settime test

 include/cobalt/kernel/timer.h              |   60 ++++++---
 kernel/cobalt/clock.c                      |   40 +++---
 kernel/cobalt/posix/sched.c                |    6 +-
 kernel/cobalt/posix/sched.h                |    2 +
 kernel/cobalt/posix/timer.c                |    6 +-
 kernel/cobalt/posix/timerfd.c              |    2 +-
 kernel/cobalt/thread.c                     |    2 +-
 kernel/cobalt/timer.c                      |   44 ++-----
 testsuite/regression/posix/Makefile.am     |    1 +
 testsuite/regression/posix/clock_settime.c |  224 ++++++++++++++++++++++++++++++++
 10 files changed, 320 insertions(+), 67 deletions(-)
 create mode 100644 testsuite/regression/posix/clock_settime.c



-- 
                                                                Gilles.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Xenomai] Please pull from xenomai-gch.git
@ 2016-05-14 14:30 Gilles Chanteperdrix
  0 siblings, 0 replies; 3+ messages in thread
From: Gilles Chanteperdrix @ 2016-05-14 14:30 UTC (permalink / raw)
  To: Philippe Gerum; +Cc: Xenomai

The following changes since commit 73141639fc3902382dfcccdf30dc9023cbc0caa5:

  cobalt/kernel: Trigger missing reschedule after PP deboost (2016-05-14 15:23:40 +0200)

are available in the git repository at:

  git://git.xenomai.org/xenomai-gch.git next

for you to fetch changes up to 15a799e1edf1da86ad80b5d19cb6d3c704c6e614:

  cobalt/timer: replace bheap with rbtree (2016-05-14 16:00:07 +0200)

----------------------------------------------------------------
Gilles Chanteperdrix (1):
      cobalt/timer: replace bheap with rbtree

 include/cobalt/kernel/Makefile.am |   1 -
 include/cobalt/kernel/bheap.h     | 266 ---------------------------------------------
 include/cobalt/kernel/timer.h     |  80 ++++++++------
 kernel/cobalt/Kconfig             |  14 +--
 kernel/cobalt/clock.c             |   2 +-
 kernel/cobalt/timer.c             |  34 +++++-
 6 files changed, 87 insertions(+), 310 deletions(-)
 delete mode 100644 include/cobalt/kernel/bheap.h


-- 
					    Gilles.
https://click-hack.org


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-05-14 14:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-01 17:13 [Xenomai] Please pull from xenomai-gch.git Gilles Chanteperdrix
2014-06-01 18:46 ` Gilles Chanteperdrix
  -- strict thread matches above, loose matches on Subject: below --
2016-05-14 14:30 Gilles Chanteperdrix

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.