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_go.c | |
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 '')
-rw-r--r-- | src/nxt_go.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nxt_go.c b/src/nxt_go.c index 207b0deb..329a3cd3 100644 --- a/src/nxt_go.c +++ b/src/nxt_go.c @@ -20,6 +20,7 @@ nxt_application_module_t nxt_go_module = { nxt_string("go"), nxt_go_init, nxt_go_run, + NULL, }; |