From: git repository hosting <gitosis@osmocom.org>
Precedence: list
To: osmocom-commitlog@lists.osmocom.org
Date: Wed, 27 Feb 2013 14:46:05 +0100
Message-ID: <E1UAhKf-0006NE-Ri@calypso.gnumonks.org>
Subject: libosmocore.git branch master updated. 0.5.3-101-g7337722
Message: 1

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "An utility library for Open Source Mobile Communications".

The branch, master has been updated
       via  73377229bb33ab79682ce4b126a63602d13304ad (commit)
      from  24e5e05b6f5ee841e4533facb434617a33423e22 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cgit.osmocom.org/cgit/libosmocore/commit/?id=73377229bb33ab79682ce4b126a63602d13304ad

commit 73377229bb33ab79682ce4b126a63602d13304ad
Author: Katerina Barone-Adesi <kat.obsc@gmail.com>
Date:   Thu Feb 21 05:16:29 2013 +0000

    Added a ring buffer log target to store the last N log messages.
    
    The log target can be used via log alarms and show alarms.
    Why? This feature was proposed/requested at
    http://openbsc.osmocom.org/trac/wiki/Tasks/ErrorLogTarget
    All messages use the same amount of space, prioritizing simplicity.

-----------------------------------------------------------------------

Summary of changes:
 .gitignore                                         |    2 +
 include/osmocom/core/logging.h                     |    5 +
 include/osmocom/core/{crcgen.h => loggingrb.h}     |   31 ++--
 include/osmocom/core/strrb.h                       |   58 +++++
 src/Makefile.am                                    |    4 +-
 src/loggingrb.c                                    |   98 +++++++++
 src/strrb.c                                        |  170 +++++++++++++++
 src/vty/logging_vty.c                              |   85 +++++++-
 tests/Makefile.am                                  |   13 +-
 tests/{logging => loggingrb}/logging_test.err      |    0
 tests/{logging => loggingrb}/logging_test.ok       |    0
 .../logging_test.c => loggingrb/loggingrb_test.c}  |   53 +++--
 tests/strrb/strrb_test.c                           |  225 ++++++++++++++++++++
 tests/strrb/strrb_test.ok                          |    1 +
 tests/testsuite.at                                 |   13 ++
 15 files changed, 711 insertions(+), 47 deletions(-)
 copy include/osmocom/core/{crcgen.h => loggingrb.h} (56%)
 create mode 100644 include/osmocom/core/strrb.h
 create mode 100644 src/loggingrb.c
 create mode 100644 src/strrb.c
 copy tests/{logging => loggingrb}/logging_test.err (100%)
 copy tests/{logging => loggingrb}/logging_test.ok (100%)
 copy tests/{logging/logging_test.c => loggingrb/loggingrb_test.c} (53%)
 create mode 100644 tests/strrb/strrb_test.c
 create mode 100644 tests/strrb/strrb_test.ok


hooks/post-receive
-- 
An utility library for Open Source Mobile Communications


