Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lgc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1723,6 +1723,7 @@ static void fullinc (lua_State *L, global_State *g) {
** some operations which could change the interpreter state in some
** unexpected ways (running finalizers and shrinking some structures).
*/
__attribute__((yk_outline))
void luaC_fullgc (lua_State *L, int isemergency) {
global_State *g = G(L);
lua_assert(!g->gcemergency);
Expand Down
1 change: 1 addition & 0 deletions src/lmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ void luaM_free_ (lua_State *L, void *block, size_t osize) {
** In case of allocation fail, this function will do an emergency
** collection to free some memory and then try the allocation again.
*/
__attribute__((yk_outline))
static void *tryagain (lua_State *L, void *block,
size_t osize, size_t nsize) {
global_State *g = G(L);
Expand Down