Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Lua Quick Start Guide

You're reading from  Lua Quick Start Guide

Product type Book
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Pages 202 pages
Edition 1st Edition
Languages
Author (1):
Gabor Szauer Gabor Szauer
Profile icon Gabor Szauer

The stack

Lua and C are fundamentally different languages. They handle everything differently, such as memory management, types, and even function calls. This poses a problem when trying to integrate the two: how can we communicate between these two languages? This is where the Lua stack comes in.

The Lua stack is an abstract stack that sits between C and the Lua runtime. It's a Last In First Out (LIFO) stack. The idea is, both C and Lua know the rules of the stack and so long as they both obey the rules, they can coexist and communicate.

In general, you can think of the stack as a shared data storage mechanism. The way it normally works is that you push some values onto the stack in C. Then, you call a Lua function and hand control over to the Lua runtime. The runtime pops the values off the stack, and the function in question does its work and pushes the return value back...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}