blob: 2daa520a59e225d45e826b268c43c5f48bb44973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (C) Yichun Zhang (agentzh)
* Copyright (C) Jinhua Luo (kingluo)
* I hereby assign copyright in this code to the lua-nginx-module project,
* to be licensed under the same terms as the rest of the code.
*/
#ifndef _NGX_HTTP_LUA_WORKER_THREAD_H_INCLUDED_
#define _NGX_HTTP_LUA_WORKER_THREAD_H_INCLUDED_
#include "ngx_http_lua_common.h"
void ngx_http_lua_inject_worker_thread_api(ngx_log_t *log, lua_State *L);
void ngx_http_lua_thread_exit_process(void);
#endif /* _NGX_HTTP_LUA_WORKER_THREAD_H_INCLUDED_ */
/* vi:set ft=c ts=4 sw=4 et fdm=marker: */
|