[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: questions about references and naming
- From: rw20@...
- Date: Sat, 5 Jun 1999 21:46:43 -0400 (EDT)
Does anyone know the answers?
Thanks,
Russ
On Sun, 30 May 1999, Russell Y Webb wrote:
> I'm working on some C++ interfaces to lua and have run into a couple of
> questions:
>
> 1. If lua_ref(true) is called multiple times on the same lua object,
> is the object only freed when that many lua_unrefs are called?
>
> 2. Can you lua_ref(true) an object with no name:
> lua_pushstring("this is a nameless object on the stack");
> ref = lua_ref(true);
> Where does such an object live? Can you get to it from within lua?
> Note: lock has to be true in this case since lua definitely does not have
> a reference to the string object (right?).
>
> Thanks,
> Russ
>
>