Skip to content

Commit

Permalink
7.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
quantum-leaps committed Mar 15, 2023
1 parent 5c7e064 commit 5e83aa8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
8 changes: 3 additions & 5 deletions qpcpp.qm
Expand Up @@ -9530,7 +9530,7 @@ QS::endRec_();
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand Down Expand Up @@ -9865,7 +9865,7 @@ QS::endRec_();
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand All @@ -9876,8 +9876,6 @@ if (QK_sched_() != 0U) {
QK_activate_();
}

onStartup(); // application-specific startup callback

#ifdef QK_START
QK_START(); // port-specific startup of the QK kernel
#endif
Expand Down Expand Up @@ -11867,7 +11865,7 @@ QS::endRec_();
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand Down
4 changes: 1 addition & 3 deletions src/qk/qk.cpp
Expand Up @@ -190,7 +190,7 @@ int_t run() {
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand All @@ -201,8 +201,6 @@ int_t run() {
QK_activate_();
}

onStartup(); // application-specific startup callback

#ifdef QK_START
QK_START(); // port-specific startup of the QK kernel
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/qv/qv.cpp
Expand Up @@ -110,7 +110,7 @@ int_t run() {
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand Down
2 changes: 1 addition & 1 deletion src/qxk/qxk.cpp
Expand Up @@ -196,7 +196,7 @@ int_t run() {
QF_INT_ENABLE();
#endif

onStartup(); // startup callback
onStartup(); // application-specific startup callback

QF_INT_DISABLE();

Expand Down

0 comments on commit 5e83aa8

Please sign in to comment.