diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-12-27 14:02:11 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-12-27 14:02:11 +0300 |
commit | be36cf52c8b092ebb688784a1c10626cac2138d7 (patch) | |
tree | c7b725425e12be5d8aa04114c3436f78726b1db1 /src/nxt_runtime.h | |
parent | cdfdbc43eb2f6c59bf1b1cf6d71a6afec34d7869 (diff) | |
download | unit-be36cf52c8b092ebb688784a1c10626cac2138d7.tar.gz unit-be36cf52c8b092ebb688784a1c10626cac2138d7.tar.bz2 |
Introducing application 'atexit' hook.
Finalizing Python interpreter.
This closes #65 issue on GitHub.
Diffstat (limited to 'src/nxt_runtime.h')
-rw-r--r-- | src/nxt_runtime.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index af105c6b..d3e61dc7 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -148,7 +148,8 @@ void nxt_cdecl nxt_log_time_handler(nxt_uint_t level, nxt_log_t *log, void nxt_stream_connection_init(nxt_task_t *task, void *obj, void *data); -void nxt_port_app_data_handler(nxt_task_t *task, nxt_port_recv_msg_t *msg); +void nxt_app_quit_handler(nxt_task_t *task, nxt_port_recv_msg_t *msg); +void nxt_app_data_handler(nxt_task_t *task, nxt_port_recv_msg_t *msg); #define nxt_runtime_process_each(rt, process) \ |