renamed stop to halt in some context.

renamed start to execute in TcpServer
This commit is contained in:
2019-11-12 07:55:32 +00:00
parent ae997bb477
commit af7852ee6c
19 changed files with 72 additions and 72 deletions

View File

@ -160,7 +160,7 @@ static void stop_run (void* arg)
int e = errno;
#endif
qse_awk_rtx_stop (app_rtx);
qse_awk_rtx_halt (app_rtx);
#if !defined(_WIN32) && !defined(__OS2__) && !defined(__DOS__)
errno = e;

View File

@ -493,7 +493,7 @@ static void stop_run (void* arg)
int e = errno;
#endif
qse_sed_stop (g_sed);
qse_sed_halt (g_sed);
#if !defined(_WIN32) && !defined(__OS2__) && !defined(__DOS__)
errno = e;
@ -879,7 +879,7 @@ static int sed_main (int argc, qse_char_t* argv[])
QSE_MMGR_FREE (qse_sed_getmmgr(sed), tmpl_tmpfile);
}
if (qse_sed_isstop (sed)) break;
if (qse_sed_ishalt (sed)) break;
}
if (output) qse_sio_close (output->u.sio);