File tree Expand file tree Collapse file tree 4 files changed +0
-23
lines changed Expand file tree Collapse file tree 4 files changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,6 @@ zend_object* php_parallel_runtime_create(zend_class_entry *type) {
128
128
php_parallel_scheduler_init (runtime );
129
129
130
130
runtime -> parent .server = SG (server_context );
131
- runtime -> parent .request_info = & SG (request_info );
132
131
133
132
return & runtime -> std ;
134
133
}
Original file line number Diff line number Diff line change 15
15
| Author: krakjoe |
16
16
+----------------------------------------------------------------------+
17
17
*/
18
- #include "SAPI.h"
19
-
20
18
#ifndef HAVE_PARALLEL_RUNTIME_H
21
19
#define HAVE_PARALLEL_RUNTIME_H
22
20
@@ -34,7 +32,6 @@ typedef struct _php_parallel_runtime_t {
34
32
} child ;
35
33
struct {
36
34
void * server ;
37
- sapi_request_info * request_info ;
38
35
} parent ;
39
36
zend_llist schedule ;
40
37
zend_object std ;
Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ static zend_always_inline php_parallel_runtime_t* php_parallel_scheduler_setup(p
86
86
TSRMLS_CACHE_UPDATE ();
87
87
88
88
SG (server_context ) = runtime -> parent .server ;
89
- SG (request_info ) = * runtime -> parent .request_info ;
90
89
91
90
runtime -> child .interrupt = & EG (vm_interrupt );
92
91
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments