@@ -4,48 +4,48 @@ provider nginx_lua {
4
4
/* lua_State *L */
5
5
probe http__lua__register__preload__package (void * L , u_char * pkg );
6
6
7
- probe http__lua__req__socket__consume__preread (ngx_http_request_t * r ,
7
+ probe http__lua__req__socket__consume__preread (void * r ,
8
8
u_char * data , size_t len );
9
9
10
10
/* lua_State *parent, lua_State *child */
11
- probe http__lua__user__coroutine__create (ngx_http_request_t * r ,
11
+ probe http__lua__user__coroutine__create (void * r ,
12
12
void * parent , void * child );
13
13
14
14
/* lua_State *parent, lua_State *child */
15
- probe http__lua__user__coroutine__resume (ngx_http_request_t * r ,
15
+ probe http__lua__user__coroutine__resume (void * r ,
16
16
void * parent , void * child );
17
17
18
18
/* lua_State *parent, lua_State *child */
19
- probe http__lua__user__coroutine__yield (ngx_http_request_t * r ,
19
+ probe http__lua__user__coroutine__yield (void * r ,
20
20
void * parent , void * child );
21
21
22
22
/* lua_State *L */
23
- probe http__lua__thread__yield (ngx_http_request_t * r , void * L );
23
+ probe http__lua__thread__yield (void * r , void * L );
24
24
25
25
/* ngx_http_lua_socket_tcp_upstream_t *u */
26
- probe http__lua__socket__tcp__send__start (ngx_http_request_t * r ,
26
+ probe http__lua__socket__tcp__send__start (void * r ,
27
27
void * u , u_char * data , size_t len );
28
28
29
29
/* ngx_http_lua_socket_tcp_upstream_t *u */
30
- probe http__lua__socket__tcp__receive__done (ngx_http_request_t * r ,
30
+ probe http__lua__socket__tcp__receive__done (void * r ,
31
31
void * u , u_char * data , size_t len );
32
32
33
33
/* ngx_http_lua_socket_tcp_upstream_t *u */
34
34
probe http__lua__socket__tcp__setkeepalive__buf__unread (
35
- ngx_http_request_t * r , void * u , u_char * data , size_t len );
35
+ void * r , void * u , u_char * data , size_t len );
36
36
37
37
/* lua_State *creator, lua_State *newthread */
38
- probe http__lua__user__thread__spawn (ngx_http_request_t * r ,
38
+ probe http__lua__user__thread__spawn (void * r ,
39
39
void * creator , void * newthread );
40
40
41
41
/* lua_State *thread, ngx_http_lua_ctx_t *ctx */
42
- probe http__lua__thread__delete (ngx_http_request_t * r , void * thread , void * ctx );
42
+ probe http__lua__thread__delete (void * r , void * thread , void * ctx );
43
43
44
44
/* lua_State *thread */
45
- probe http__lua__run__posted__thread (ngx_http_request_t * r , void * thread ,
45
+ probe http__lua__run__posted__thread (void * r , void * thread ,
46
46
int status );
47
47
48
- probe http__lua__coroutine__done (ngx_http_request_t * r , void * co ,
48
+ probe http__lua__coroutine__done (void * r , void * co ,
49
49
int success );
50
50
51
51
/* lua_State *parent, lua_State *child */
0 commit comments