lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>What options do I have, the value I am setting is like
>a constant userdata specific to each thread...

One way to have writable data that is local to chunks is to use a table
and store things in it. Of course, you must make it visible to the outside,
perhaps with a function.
--lhf