diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
commit | 6f2c9acd1841ca20a1388b34aef64e9f00459090 (patch) | |
tree | c0b9c1063ec464027d1ca29a793f6c0b7a6878d5 /auto/modules/conf | |
parent | 5745e4826427155e29c1d520fe77811a0f570689 (diff) | |
download | unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.gz unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.bz2 |
Processes refactoring.
The cycle has been renamed to the runtime.
Diffstat (limited to 'auto/modules/conf')
-rw-r--r-- | auto/modules/conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/modules/conf b/auto/modules/conf index 141bd098..f060bdeb 100644 --- a/auto/modules/conf +++ b/auto/modules/conf @@ -18,7 +18,7 @@ NXT_MODULES_SRC=$NXT_BUILD_DIR/nxt_modules.c cat << END > $NXT_MODULES_SRC #include <nxt_main.h> -#include <nxt_cycle.h> +#include <nxt_runtime.h> END @@ -26,7 +26,7 @@ END for nxt_init in $NXT_MODULES_INIT do - $echo "extern nxt_int_t $nxt_init(nxt_thread_t *thr, nxt_cycle_t *cycle);" \ + $echo "extern nxt_int_t $nxt_init(nxt_thread_t *thr, nxt_runtime_t *rt);" \ >> $NXT_MODULES_SRC done |