Skip to content

Commit 9209c2a

Browse files
committed
Re-gen.
1 parent b70f6a1 commit 9209c2a

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

autosrc/rtpp_module_if_fin.c

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,6 @@ static void rtpp_module_if_start_fin(void *pub) {
3636
fprintf(stderr, "Method rtpp_module_if@%p::start (rtpp_module_if_start) is invoked after destruction\x0a", pub);
3737
RTPP_AUTOTRAP();
3838
}
39-
static void rtpp_module_if_ul_subc_handle_fin(void *pub) {
40-
fprintf(stderr, "Method rtpp_module_if@%p::ul_subc_handle (rtpp_module_if_ul_subc_handle) is invoked after destruction\x0a", pub);
41-
RTPP_AUTOTRAP();
42-
}
4339
void rtpp_module_if_fin(struct rtpp_module_if *pub) {
4440
RTPP_DBG_ASSERT(pub->construct != (rtpp_module_if_construct_t)NULL);
4541
RTPP_DBG_ASSERT(pub->construct != (rtpp_module_if_construct_t)&rtpp_module_if_construct_fin);
@@ -62,9 +58,6 @@ void rtpp_module_if_fin(struct rtpp_module_if *pub) {
6258
RTPP_DBG_ASSERT(pub->start != (rtpp_module_if_start_t)NULL);
6359
RTPP_DBG_ASSERT(pub->start != (rtpp_module_if_start_t)&rtpp_module_if_start_fin);
6460
pub->start = (rtpp_module_if_start_t)&rtpp_module_if_start_fin;
65-
RTPP_DBG_ASSERT(pub->ul_subc_handle != (rtpp_module_if_ul_subc_handle_t)NULL);
66-
RTPP_DBG_ASSERT(pub->ul_subc_handle != (rtpp_module_if_ul_subc_handle_t)&rtpp_module_if_ul_subc_handle_fin);
67-
pub->ul_subc_handle = (rtpp_module_if_ul_subc_handle_t)&rtpp_module_if_ul_subc_handle_fin;
6861
}
6962
#endif /* RTPP_DEBUG */
7063
#if defined(RTPP_FINTEST)
@@ -95,7 +88,6 @@ rtpp_module_if_fintest()
9588
tp->pub.kaput = (rtpp_module_if_kaput_t)((void *)0x1);
9689
tp->pub.load = (rtpp_module_if_load_t)((void *)0x1);
9790
tp->pub.start = (rtpp_module_if_start_t)((void *)0x1);
98-
tp->pub.ul_subc_handle = (rtpp_module_if_ul_subc_handle_t)((void *)0x1);
9991
CALL_SMETHOD(tp->pub.rcnt, attach, (rtpp_refcnt_dtor_t)&rtpp_module_if_fin,
10092
&tp->pub);
10193
RTPP_OBJ_DECREF(&(tp->pub));
@@ -106,8 +98,7 @@ rtpp_module_if_fintest()
10698
CALL_TFIN(&tp->pub, kaput);
10799
CALL_TFIN(&tp->pub, load);
108100
CALL_TFIN(&tp->pub, start);
109-
CALL_TFIN(&tp->pub, ul_subc_handle);
110-
assert((_naborts - naborts_s) == 8);
101+
assert((_naborts - naborts_s) == 7);
111102
free(tp);
112103
}
113104
const static void *_rtpp_module_if_ftp = (void *)&rtpp_module_if_fintest;

0 commit comments

Comments
 (0)