-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlua_atpanic.3
34 lines (34 loc) · 912 Bytes
/
lua_atpanic.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
.Dd $Mdocdate: July 14 2022 $
.Dt LUA_ATPANIC 3
.Os
.Sh NAME
.Nm lua_atpanic
.Nd sets a new panic function and returns the old one, function indicator
.Bq -0, +0, -
.Sh SYNOPSIS
.In lua.h
.Ft lua_CFunction
.Fn lua_atpanic "lua_State *L" "lua_CFunction panicf"
.Sh DESCRIPTION
.Fn lua_atpanic
sets a new panic function and returns the old one.
.Pp
If an error happens outside any protected environment, Lua calls a panic
function and then calls
.Em exit(EXIT_FAILURE) ,
thus exiting the host application.
Your panic function can avoid this exit by never returning (e.g., doing a long
jump).
.Pp
The panic function can access the error message at the top of the stack.
.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_atpanic
manual page is based on Lua Reference Manual 5.1 and was created by Sergey Bronnikov.