commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] git://gnuradio.org/jblum branch, extras2pdu_wip, updat


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/jblum branch, extras2pdu_wip, updated. 5d1d47d09f843bcf66b64f11b733d589a4f05f33
Date: Fri, 30 Nov 2012 20:52:42 +0000 (UTC)

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 "git://gnuradio.org/jblum".

The branch, extras2pdu_wip has been updated
  discards  b9039354cdda433ed8e94a8cdb9fe029bfca0a01 (commit)
  discards  49bb8ffef4aae11bff59d4b679e566af14a0535c (commit)
  discards  b81a731baa01ca9ce3efb72b05f834d4c38ed1bf (commit)
       via  5d1d47d09f843bcf66b64f11b733d589a4f05f33 (commit)
       via  2912d100f1fb81fb6d118bd21c83fad0f89f8e3d (commit)
       via  ccf55ad86163482d0e4944af5b1fd8c60bca57fe (commit)
       via  91e97841a6af94f0fcd204f79a1468ad5657bdb5 (commit)
       via  4478cb86a5dc9fccf66c2cdd5806419b70c3837e (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (b9039354cdda433ed8e94a8cdb9fe029bfca0a01)
            \
             N -- N -- N (5d1d47d09f843bcf66b64f11b733d589a4f05f33)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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 -----------------------------------------------------------------
commit 5d1d47d09f843bcf66b64f11b733d589a4f05f33
Author: Josh Blum <address@hidden>
Date:   Fri Nov 30 12:53:48 2012 -0800

    pdu: work on tuntap_pdu, not sure about pdu output

commit 2912d100f1fb81fb6d118bd21c83fad0f89f8e3d
Author: Josh Blum <address@hidden>
Date:   Thu Nov 29 18:06:31 2012 -0800

    pdu: convert some cc file stuff, need a PDU example

commit ccf55ad86163482d0e4944af5b1fd8c60bca57fe
Author: Josh Blum <address@hidden>
Date:   Thu Nov 29 17:52:07 2012 -0800

    pdu: changed headers to gr runtime style

commit 91e97841a6af94f0fcd204f79a1468ad5657bdb5
Author: Josh Blum <address@hidden>
Date:   Thu Nov 29 17:49:19 2012 -0800

    pdu: copied tuntap and socket message blocks from grextras

commit 4478cb86a5dc9fccf66c2cdd5806419b70c3837e
Author: Johnathan Corgan <address@hidden>
Date:   Thu Nov 29 19:46:29 2012 -0800

    Adding PDU to tagged stream and tagged stream to PDU blocks along with QA 
python
    non-stream-connected blocks still need a new thread context

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

Summary of changes:
 gnuradio-core/src/lib/io/CMakeLists.txt            |    5 +
 gnuradio-core/src/lib/io/gr_message_debug.cc       |   71 ++++++++++
 gnuradio-core/src/lib/io/gr_message_debug.h        |   59 ++++++++
 gnuradio-core/src/lib/io/gr_message_debug.i        |   30 ++++
 gnuradio-core/src/lib/io/gr_pdu.cc                 |   43 ++++++
 gnuradio-core/src/lib/io/gr_pdu.h                  |   38 ++++++
 gnuradio-core/src/lib/io/gr_pdu.i                  |   30 ++++
 .../src/lib/io/gr_pdu_to_tagged_stream.cc          |  131 ++++++++++++++++++
 gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.h |   63 +++++++++
 gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.i |   31 +++++
 .../src/lib/io/gr_tagged_stream_to_pdu.cc          |  139 ++++++++++++++++++++
 gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.h |   76 +++++++++++
 gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.i |   31 +++++
 gnuradio-core/src/lib/io/io.i                      |    8 +
 gnuradio-core/src/lib/runtime/gr_basic_block.cc    |   22 +---
 gnuradio-core/src/lib/runtime/gr_basic_block.h     |   21 ++--
 gnuradio-core/src/lib/runtime/gr_basic_block.i     |    3 +
 gnuradio-core/src/lib/runtime/gr_block.cc          |    3 +
 gnuradio-core/src/lib/runtime/gr_block_registry.cc |   18 +++
 gnuradio-core/src/lib/runtime/gr_block_registry.h  |   10 +-
 .../src/lib/runtime/gr_tpb_thread_body.cc          |    4 +-
 gnuradio-core/src/python/gnuradio/gr/qa_pdu.py     |   70 ++++++++++
 gr-blocks/lib/socket_pdu.cc                        |    8 +-
 gr-blocks/lib/tuntap_pdu.cc                        |   84 +++++-------
 24 files changed, 913 insertions(+), 85 deletions(-)
 create mode 100644 gnuradio-core/src/lib/io/gr_message_debug.cc
 create mode 100644 gnuradio-core/src/lib/io/gr_message_debug.h
 create mode 100644 gnuradio-core/src/lib/io/gr_message_debug.i
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu.cc
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu.h
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu.i
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.cc
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.h
 create mode 100644 gnuradio-core/src/lib/io/gr_pdu_to_tagged_stream.i
 create mode 100644 gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.cc
 create mode 100644 gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.h
 create mode 100644 gnuradio-core/src/lib/io/gr_tagged_stream_to_pdu.i
 create mode 100755 gnuradio-core/src/python/gnuradio/gr/qa_pdu.py


hooks/post-receive
-- 
git://gnuradio.org/jblum



reply via email to

[Prev in Thread] Current Thread [Next in Thread]