flu_close Subroutine

public subroutine flu_close(L)

Close a previously opened Lua script.

Arguments

Type IntentOptional Attributes Name
type(flu_State) :: L

Handle to the Lua state to close.


Calls

proc~~flu_close~~CallsGraph proc~flu_close flu_close interface~lua_close lua_close proc~flu_close->interface~lua_close

Called by

proc~~flu_close~~CalledByGraph proc~flu_close flu_close proc~close_config close_config proc~close_config->proc~flu_close program~test test program~test->proc~flu_close proc~aot_file_to_buffer aot_file_to_buffer proc~aot_file_to_buffer->proc~close_config proc~aot_path_close_table aot_path_close_table proc~aot_path_close_table->proc~close_config interface~aot_path_close aot_path_close interface~aot_path_close->proc~aot_path_close_table proc~aot_path_close_fun aot_path_close_fun interface~aot_path_close->proc~aot_path_close_fun proc~aot_path_close_fun->proc~aot_path_close_table

Source Code

  subroutine flu_close(L)
    type(flu_State) :: L !! Handle to the Lua state to close.

    call lua_close(L%state)
    L%state = c_null_ptr
  end subroutine flu_close