From 47eb3f94373a13ac9f204ca65dfde602f53bdc1a Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Mon, 17 Feb 2014 11:05:19 +0100 Subject: Deep userdata support improvements * bumped version to 3.9.0 * keepers now require "package", receive package.path & package.cpath, and call on_state_create() if it is a C function * changed the deep public API (improved deep idfunc signature, renamed luaG_deep_userdata to luaG_newdeepuserdata) * if an error occurs while copying a deep userdata, don't raise inside the keeper state * fixed situations where raised errors could lead to memory leaks (deep gc) --- CHANGES | 7 + docs/index.html | 32 ++- src/deep.h | 12 +- src/keeper.c | 44 +++- src/lanes.c | 286 ++++++++++---------- src/tools.c | 791 ++++++++++++++++++++++++++------------------------------ src/tools.h | 16 +- 7 files changed, 604 insertions(+), 584 deletions(-) diff --git a/CHANGES b/CHANGES index 329c53f..dd0917f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,12 @@ CHANGES: +CHANGE 99: BGe 17-Feb-14 + * version 3.9.0 + * keepers now require "package", receive package.path & package.cpath, and call on_state_create() if it is a C function + * changed the deep public API (improved deep idfunc signature, renamed luaG_deep_userdata to luaG_newdeepuserdata) + * if an error occurs while copying a deep userdata, don't raise inside the keeper state + * fixed situations where raised errors could lead to memory leaks (deep gc) + CHANGE 98: BGe 13-Feb-14 * version 3.8.5 * linda:limit() returns lanes.cancel_error on a limited linda diff --git a/docs/index.html b/docs/index.html index 2468ad8..051f9d0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -70,7 +70,7 @@

- This document was revised on 13-Feb-14, and applies to version 3.8.5. + This document was revised on 17-Feb-14, and applies to version 3.9.0.

@@ -355,7 +355,9 @@ function/nil - If provided, will be called in every created Lua state (keepers and lanes) right after initializing the base libraries. + If provided, will be called in every created Lua state right after initializing the base libraries. +
+ Keeper states will call it as well, but only if it is a C function (keeper states are not able to execute any user Lua code).
Typical usage is twofold: