-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlua_newstate.3
37 lines (37 loc) · 855 Bytes
/
lua_newstate.3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.Dd $Mdocdate: July 14 2022 $
.Dt LUA_NEWSTATE 3
.Os
.Sh NAME
.Nm lua_newstate
.Nd creates a new, independent state, function indicator
.Bq -0, +0, -
.Sh SYNOPSIS
.In lua.h
.Ft lua_State *
.Fn lua_newstate "lua_Alloc f" "void *ud"
.Sh DESCRIPTION
.Fn lua_newstate
creates a new, independent state.
The argument
.Fa f
is the allocator function; Lua does all memory allocation for this state
through this function.
The second argument,
.Fa ud ,
is an opaque pointer that Lua simply passes to the allocator in every call.
.Sh RETURN VALUES
Returns
.Dv NULL
if cannot create the state
.Pq due to lack of memory .
.Sh SEE ALSO
.Rs
.%A Roberto Ierusalimschy
.%A Luiz Henrique de Figueiredo
.%A Waldemar Celes
.%T Lua 5.1 Reference Manual
.Re
.Sh HISTORY
The
.Fn lua_newstate
manual page is based on Lua Reference Manual 5.1 and was created by Sergey Bronnikov.