From: git repository hosting <gitosis@osmocom.org>
Precedence: list
To: osmocom-commitlog@lists.osmocom.org
Date: Wed, 27 Feb 2013 15:14:20 +0100
Message-ID: <E1UAhm0-0007Bl-SH@calypso.gnumonks.org>
Subject: libosmocore.git branch master updated. 0.5.3-103-g3309a43
Message: 3

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  3309a43ef56366926589fdb3f7e4ee8af41fe1c5 (commit)
      from  efd2bd691fd948df00c1eebcd8599b871f5c34f5 (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=3309a43ef56366926589fdb3f7e4ee8af41fe1c5

commit 3309a43ef56366926589fdb3f7e4ee8af41fe1c5
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                                         |    3 +
 include/Makefile.am                                |    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                                        |  171 +++++++++++++++
 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 ++
 16 files changed, 715 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


