Initial commit of RMR Library 30/30/1
authorAshwin Sridharan <hiltunen@att.com>
Wed, 3 Apr 2019 20:47:02 +0000 (16:47 -0400)
committerAshwin Sridharan <hiltunen@att.com>
Wed, 3 Apr 2019 20:47:06 +0000 (16:47 -0400)
commitfd9cc7a5b3355146388ebdf4d558cb284c66c5f1
tree11659f1100d6d8760ac0aef7adfe7ee13daa3302
parent008bc5b4414cebe48cecf63e8c817a02f7c3ce74
Initial commit of RMR Library

Change-Id: Ic4c998b056e8759f4a47a9a8c50c77e88df0f325
Signed-off-by: Ashwin Sridharan <hiltunen@att.com>
72 files changed:
BUILD [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
LICENSE.txt [new file with mode: 0644]
README [new file with mode: 0644]
doc/CMakeLists.txt [new file with mode: 0644]
doc/README [new file with mode: 0644]
doc/src/generic_ps.im [new file with mode: 0644]
doc/src/man/.gitignore [new file with mode: 0644]
doc/src/man/README [new file with mode: 0644]
doc/src/man/rmr.7.xfm [new file with mode: 0644]
doc/src/man/rmr_alloc_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_bytes2meid.3.xfm [new file with mode: 0644]
doc/src/man/rmr_bytes2payload.3.xfm [new file with mode: 0644]
doc/src/man/rmr_bytes2xact.3.xfm [new file with mode: 0644]
doc/src/man/rmr_call.3.xfm [new file with mode: 0644]
doc/src/man/rmr_close.3.xfm [new file with mode: 0644]
doc/src/man/rmr_free_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_get_meid.3.xfm [new file with mode: 0644]
doc/src/man/rmr_get_rcvfd.3.xfm [new file with mode: 0644]
doc/src/man/rmr_init.3.xfm [new file with mode: 0644]
doc/src/man/rmr_payload_size.3.xfm [new file with mode: 0644]
doc/src/man/rmr_rcv_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_ready.3.xfm [new file with mode: 0644]
doc/src/man/rmr_rts_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_send_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_str2meid.3.xfm [new file with mode: 0644]
doc/src/man/rmr_str2xact.3.xfm [new file with mode: 0644]
doc/src/man/rmr_support.3.xfm [new file with mode: 0644]
doc/src/man/rmr_torcv_msg.3.xfm [new file with mode: 0644]
doc/src/man/rmr_wh_close.3.xfm [new file with mode: 0644]
doc/src/man/rmr_wh_open.3.xfm [new file with mode: 0644]
doc/src/man/rmr_wh_send_msg.3.xfm [new file with mode: 0644]
doc/src/roff.im [new file with mode: 0644]
doc/src/rst.im [new file with mode: 0644]
examples/Makefile [new file with mode: 0644]
examples/README [new file with mode: 0644]
examples/receiver.c [new file with mode: 0644]
examples/sender.c [new file with mode: 0644]
src/README [new file with mode: 0644]
src/STYLE [new file with mode: 0644]
src/common/CMakeLists.txt [new file with mode: 0644]
src/common/include/RIC_message_types.h [new file with mode: 0644]
src/common/include/rmr.h [new file with mode: 0644]
src/common/include/rmr_agnostic.h [new file with mode: 0644]
src/common/include/rmr_symtab.h [new file with mode: 0644]
src/common/src/README [new file with mode: 0644]
src/common/src/mbuf_api.c [new file with mode: 0644]
src/common/src/ring_static.c [new file with mode: 0644]
src/common/src/rt_generic_static.c [new file with mode: 0644]
src/common/src/rtc_static.c [new file with mode: 0644]
src/common/src/symtab.c [new file with mode: 0644]
src/common/src/tools_static.c [new file with mode: 0644]
src/common/src/wormholes.c [new file with mode: 0644]
src/nanomsg/CMakeLists.txt [new file with mode: 0644]
src/nanomsg/include/rmr_private.h [new file with mode: 0644]
src/nanomsg/src/rmr.c [new file with mode: 0644]
src/nanomsg/src/rtable_static.c [new file with mode: 0644]
src/nanomsg/src/sr_static.c [new file with mode: 0644]
src/nng/CMakeLists.txt [new file with mode: 0644]
src/nng/include/rmr_nng_private.h [new file with mode: 0644]
src/nng/src/rmr_nng.c [new file with mode: 0644]
src/nng/src/rtable_nng_static.c [new file with mode: 0644]
src/nng/src/sr_nng_static.c [new file with mode: 0644]
test/.gitignore [new file with mode: 0644]
test/.targets [new file with mode: 0644]
test/Makefile [new file with mode: 0644]
test/README [new file with mode: 0644]
test/ring_test.c [new file with mode: 0644]
test/symtab_test.c [new file with mode: 0644]
test/test_support.c [new file with mode: 0644]
test/tools_test.c [new file with mode: 0644]
test/unit_test.ksh [new file with mode: 0755]