remove redundent comments

main
xiaosuGW 3 years ago
parent 404d6fce1a
commit 870962313c

@ -32,7 +32,6 @@ struct sandbox_io_handle {
struct sandbox { struct sandbox {
uint64_t id; uint64_t id;
bool request_from_outside; bool request_from_outside;
int current_func_index; /* indicate the index of next function in the chain */
char * previous_function_output; /* the output of the previous function */ char * previous_function_output; /* the output of the previous function */
ssize_t output_length; /* the length of previous_function_output */ ssize_t output_length; /* the length of previous_function_output */
ssize_t previosu_request_length; /* the length of previous request */ ssize_t previosu_request_length; /* the length of previous request */

@ -93,7 +93,6 @@ current_sandbox_start(void)
module_initialize_memory(current_module); module_initialize_memory(current_module);
sandbox_setup_arguments(sandbox); sandbox_setup_arguments(sandbox);
/* Executing the function */ /* Executing the function */
int32_t argument_count = module_get_argument_count(current_module); int32_t argument_count = module_get_argument_count(current_module);
current_sandbox_enable_preemption(sandbox); current_sandbox_enable_preemption(sandbox);

Loading…
Cancel
Save