Skip to content

Commit

Permalink
Re-gen.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jul 8, 2024
1 parent 95d37b9 commit 9ecc9f4
Show file tree
Hide file tree
Showing 7 changed files with 2,548 additions and 8 deletions.
5 changes: 3 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ am__define_uniq_tagged_files = \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
DIST_SUBDIRS = libexecinfo libucl libxxHash makeann modules \
DIST_SUBDIRS = libexecinfo libucl libxxHash libre makeann modules \
libelperiodic/src src pertools tests extractaudio doc
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
$(top_srcdir)/python/sippy_lite/sippy/Time/clock_dtime.py.in \
Expand Down Expand Up @@ -389,7 +389,8 @@ AUTOMAKE_OPTIONS = foreign
@BUILD_EXTRACTAUDIO_TRUE@SUBD_EAUD = extractaudio
@BUILD_UDP_CONTENTION_TRUE@SUBD_UDCNT = pertools
@BUILD_DOCS_TRUE@SUBD_DOCS = doc
SUBDIRS = libexecinfo libucl libxxHash makeann $(SUBD_MOD) \
@BUILD_CRYPTO_TRUE@SUB_LIBRE = libre
SUBDIRS = libexecinfo libucl libxxHash $(SUB_LIBRE) makeann $(SUBD_MOD) \
$(SUBD_ELP) src $(SUBD_UDCNT) tests \
$(SUBD_EAUD) ${SUBD_DOCS}

Expand Down
18 changes: 17 additions & 1 deletion autosrc/rtpp_stream_fin.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ static void rtpp_stream_latch_fin(void *pub) {
fprintf(stderr, "Method rtpp_stream@%p::latch (rtpp_stream_latch) is invoked after destruction\x0a", pub);
RTPP_AUTOTRAP();
}
static void rtpp_stream_latch_getmode_fin(void *pub) {
fprintf(stderr, "Method rtpp_stream@%p::latch_getmode (rtpp_stream_latch_getmode) is invoked after destruction\x0a", pub);
RTPP_AUTOTRAP();
}
static void rtpp_stream_latch_setmode_fin(void *pub) {
fprintf(stderr, "Method rtpp_stream@%p::latch_setmode (rtpp_stream_latch_setmode) is invoked after destruction\x0a", pub);
RTPP_AUTOTRAP();
}
static void rtpp_stream_locklatch_fin(void *pub) {
fprintf(stderr, "Method rtpp_stream@%p::locklatch (rtpp_stream_locklatch) is invoked after destruction\x0a", pub);
RTPP_AUTOTRAP();
Expand Down Expand Up @@ -105,6 +113,8 @@ static const struct rtpp_stream_smethods rtpp_stream_smethods_fin = {
.isplayer_active = (rtpp_stream_isplayer_active_t)&rtpp_stream_isplayer_active_fin,
.issendable = (rtpp_stream_issendable_t)&rtpp_stream_issendable_fin,
.latch = (rtpp_stream_latch_t)&rtpp_stream_latch_fin,
.latch_getmode = (rtpp_stream_latch_getmode_t)&rtpp_stream_latch_getmode_fin,
.latch_setmode = (rtpp_stream_latch_setmode_t)&rtpp_stream_latch_setmode_fin,
.locklatch = (rtpp_stream_locklatch_t)&rtpp_stream_locklatch_fin,
.prefill_addr = (rtpp_stream_prefill_addr_t)&rtpp_stream_prefill_addr_fin,
.reg_onhold = (rtpp_stream_reg_onhold_t)&rtpp_stream_reg_onhold_fin,
Expand All @@ -128,6 +138,8 @@ void rtpp_stream_fin(struct rtpp_stream *pub) {
RTPP_DBG_ASSERT(pub->smethods->isplayer_active != (rtpp_stream_isplayer_active_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->issendable != (rtpp_stream_issendable_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->latch != (rtpp_stream_latch_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->latch_getmode != (rtpp_stream_latch_getmode_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->latch_setmode != (rtpp_stream_latch_setmode_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->locklatch != (rtpp_stream_locklatch_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->prefill_addr != (rtpp_stream_prefill_addr_t)NULL);
RTPP_DBG_ASSERT(pub->smethods->reg_onhold != (rtpp_stream_reg_onhold_t)NULL);
Expand Down Expand Up @@ -175,6 +187,8 @@ rtpp_stream_fintest()
.isplayer_active = (rtpp_stream_isplayer_active_t)((void *)0x1),
.issendable = (rtpp_stream_issendable_t)((void *)0x1),
.latch = (rtpp_stream_latch_t)((void *)0x1),
.latch_getmode = (rtpp_stream_latch_getmode_t)((void *)0x1),
.latch_setmode = (rtpp_stream_latch_setmode_t)((void *)0x1),
.locklatch = (rtpp_stream_locklatch_t)((void *)0x1),
.prefill_addr = (rtpp_stream_prefill_addr_t)((void *)0x1),
.reg_onhold = (rtpp_stream_reg_onhold_t)((void *)0x1),
Expand All @@ -201,6 +215,8 @@ rtpp_stream_fintest()
CALL_TFIN(&tp->pub, isplayer_active);
CALL_TFIN(&tp->pub, issendable);
CALL_TFIN(&tp->pub, latch);
CALL_TFIN(&tp->pub, latch_getmode);
CALL_TFIN(&tp->pub, latch_setmode);
CALL_TFIN(&tp->pub, locklatch);
CALL_TFIN(&tp->pub, prefill_addr);
CALL_TFIN(&tp->pub, reg_onhold);
Expand All @@ -209,7 +225,7 @@ rtpp_stream_fintest()
CALL_TFIN(&tp->pub, send_pkt_to);
CALL_TFIN(&tp->pub, set_skt);
CALL_TFIN(&tp->pub, update_skt);
assert((_naborts - naborts_s) == 21);
assert((_naborts - naborts_s) == 23);
free(tp);
}
const static void *_rtpp_stream_ftp = (void *)&rtpp_stream_fintest;
Expand Down
4 changes: 3 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -15071,7 +15071,7 @@ else
fi


ac_config_files="$ac_config_files Makefile src/Makefile makeann/Makefile tests/Makefile extractaudio/Makefile libexecinfo/Makefile modules/Makefile modules/acct_csv/Makefile modules/acct_rtcp_hep/Makefile modules/catch_dtmf/Makefile modules/badmod/Makefile libxxHash/Makefile modules/dtls_gw/Makefile pertools/Makefile pertools/udp_contention/Makefile libucl/Makefile python/sippy_lite/sippy/Time/clock_dtime.py doc/Makefile"
ac_config_files="$ac_config_files Makefile src/Makefile makeann/Makefile tests/Makefile extractaudio/Makefile libexecinfo/Makefile modules/Makefile modules/acct_csv/Makefile modules/acct_rtcp_hep/Makefile modules/catch_dtmf/Makefile modules/badmod/Makefile libxxHash/Makefile libre/Makefile modules/dtls_gw/Makefile modules/ice_lite/Makefile pertools/Makefile pertools/udp_contention/Makefile libucl/Makefile python/sippy_lite/sippy/Time/clock_dtime.py doc/Makefile"



Expand Down Expand Up @@ -16176,7 +16176,9 @@ do
"modules/catch_dtmf/Makefile") CONFIG_FILES="$CONFIG_FILES modules/catch_dtmf/Makefile" ;;
"modules/badmod/Makefile") CONFIG_FILES="$CONFIG_FILES modules/badmod/Makefile" ;;
"libxxHash/Makefile") CONFIG_FILES="$CONFIG_FILES libxxHash/Makefile" ;;
"libre/Makefile") CONFIG_FILES="$CONFIG_FILES libre/Makefile" ;;
"modules/dtls_gw/Makefile") CONFIG_FILES="$CONFIG_FILES modules/dtls_gw/Makefile" ;;
"modules/ice_lite/Makefile") CONFIG_FILES="$CONFIG_FILES modules/ice_lite/Makefile" ;;
"pertools/Makefile") CONFIG_FILES="$CONFIG_FILES pertools/Makefile" ;;
"pertools/udp_contention/Makefile") CONFIG_FILES="$CONFIG_FILES pertools/udp_contention/Makefile" ;;
"libucl/Makefile") CONFIG_FILES="$CONFIG_FILES libucl/Makefile" ;;
Expand Down
Loading

0 comments on commit 9ecc9f4

Please sign in to comment.