aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lanes.c')
-rw-r--r--src/lanes.c42
1 files changed, 22 insertions, 20 deletions
diff --git a/src/lanes.c b/src/lanes.c
index c5b6c4f..8817071 100644
--- a/src/lanes.c
+++ b/src/lanes.c
@@ -238,6 +238,7 @@ static bool_t tracking_remove( Lane* s)
238 238
239static void lane_cleanup( Lane* s) 239static void lane_cleanup( Lane* s)
240{ 240{
241 AllocatorDefinition* const allocD = &s->U->protected_allocator.definition;
241 // Clean up after a (finished) thread 242 // Clean up after a (finished) thread
242 // 243 //
243#if THREADWAIT_METHOD == THREADWAIT_CONDVAR 244#if THREADWAIT_METHOD == THREADWAIT_CONDVAR
@@ -253,7 +254,7 @@ static void lane_cleanup( Lane* s)
253 } 254 }
254#endif // HAVE_LANE_TRACKING 255#endif // HAVE_LANE_TRACKING
255 256
256 free( s); 257 allocD->allocF(allocD->allocUD, s, sizeof(Lane), 0);
257} 258}
258 259
259/* 260/*
@@ -457,9 +458,9 @@ static int selfdestruct_gc( lua_State* L)
457 // if we failed, and we know the thread is waiting on a linda 458 // if we failed, and we know the thread is waiting on a linda
458 if( cancelled == FALSE && s->status == WAITING && s->waiting_on != NULL) 459 if( cancelled == FALSE && s->status == WAITING && s->waiting_on != NULL)
459 { 460 {
460 // signal the linda the wake up the thread so that it can react to the cancel query 461 // signal the linda to wake up the thread so that it can react to the cancel query
461 // let us hope we never land here with a pointer on a linda that has been destroyed... 462 // let us hope we never land here with a pointer on a linda that has been destroyed...
462 SIGNAL_T *waiting_on = s->waiting_on; 463 SIGNAL_T* waiting_on = s->waiting_on;
463 //s->waiting_on = NULL; // useful, or not? 464 //s->waiting_on = NULL; // useful, or not?
464 SIGNAL_ALL( waiting_on); 465 SIGNAL_ALL( waiting_on);
465 } 466 }
@@ -1053,6 +1054,7 @@ LUAG_FUNC( lane_new)
1053#define FIXED_ARGS 7 1054#define FIXED_ARGS 7
1054 int const nargs = lua_gettop(L) - FIXED_ARGS; 1055 int const nargs = lua_gettop(L) - FIXED_ARGS;
1055 Universe* U = universe_get( L); 1056 Universe* U = universe_get( L);
1057 AllocatorDefinition* const allocD = &U->protected_allocator.definition;
1056 ASSERT_L( nargs >= 0); 1058 ASSERT_L( nargs >= 0);
1057 1059
1058 // public Lanes API accepts a generic range -3/+3 1060 // public Lanes API accepts a generic range -3/+3
@@ -1222,7 +1224,7 @@ LUAG_FUNC( lane_new)
1222 // 1224 //
1223 // a Lane full userdata needs a single uservalue 1225 // a Lane full userdata needs a single uservalue
1224 ud = lua_newuserdatauv( L, sizeof( Lane*), 1); // func libs priority globals package required gc_cb lane 1226 ud = lua_newuserdatauv( L, sizeof( Lane*), 1); // func libs priority globals package required gc_cb lane
1225 s = *ud = (Lane*) malloc( sizeof( Lane)); 1227 s = *ud = (Lane*) allocD->allocF( allocD->allocUD, NULL, 0, sizeof(Lane));
1226 if( s == NULL) 1228 if( s == NULL)
1227 { 1229 {
1228 return luaL_error( L, "could not create lane: out of memory"); 1230 return luaL_error( L, "could not create lane: out of memory");
@@ -1856,7 +1858,7 @@ LUAG_FUNC( configure)
1856#endif // THREADAPI == THREADAPI_PTHREAD 1858#endif // THREADAPI == THREADAPI_PTHREAD
1857 1859
1858 STACK_GROW( L, 4); 1860 STACK_GROW( L, 4);
1859 STACK_CHECK_ABS( L, 1); // settings 1861 STACK_CHECK_ABS( L, 1); // settings
1860 1862
1861 DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "%p: lanes.configure() BEGIN\n" INDENT_END, L)); 1863 DEBUGSPEW_CODE( fprintf( stderr, INDENT_BEGIN "%p: lanes.configure() BEGIN\n" INDENT_END, L));
1862 DEBUGSPEW_CODE( if( U) ++ U->debugspew_indent_depth); 1864 DEBUGSPEW_CODE( if( U) ++ U->debugspew_indent_depth);
@@ -1913,10 +1915,10 @@ LUAG_FUNC( configure)
1913 serialize_require( DEBUGSPEW_PARAM_COMMA( U) L); 1915 serialize_require( DEBUGSPEW_PARAM_COMMA( U) L);
1914 1916
1915 // Retrieve main module interface table 1917 // Retrieve main module interface table
1916 lua_pushvalue( L, lua_upvalueindex( 2)); // settings M 1918 lua_pushvalue( L, lua_upvalueindex( 2)); // settings M
1917 // remove configure() (this function) from the module interface 1919 // remove configure() (this function) from the module interface
1918 lua_pushnil( L); // settings M nil 1920 lua_pushnil( L); // settings M nil
1919 lua_setfield( L, -2, "configure"); // settings M 1921 lua_setfield( L, -2, "configure"); // settings M
1920 // add functions to the module's table 1922 // add functions to the module's table
1921 luaG_registerlibfuncs( L, lanes_functions); 1923 luaG_registerlibfuncs( L, lanes_functions);
1922#if HAVE_LANE_TRACKING 1924#if HAVE_LANE_TRACKING
@@ -1943,7 +1945,7 @@ LUAG_FUNC( configure)
1943 // prepare the metatable for threads 1945 // prepare the metatable for threads
1944 // contains keys: { __gc, __index, cached_error, cached_tostring, cancel, join, get_debug_threadname } 1946 // contains keys: { __gc, __index, cached_error, cached_tostring, cancel, join, get_debug_threadname }
1945 // 1947 //
1946 if( luaL_newmetatable( L, "Lane")) // settings M mt 1948 if( luaL_newmetatable( L, "Lane")) // settings M mt
1947 { 1949 {
1948 lua_pushcfunction( L, LG_thread_gc); // settings M mt LG_thread_gc 1950 lua_pushcfunction( L, LG_thread_gc); // settings M mt LG_thread_gc
1949 lua_setfield( L, -2, "__gc"); // settings M mt 1951 lua_setfield( L, -2, "__gc"); // settings M mt
@@ -1965,25 +1967,25 @@ LUAG_FUNC( configure)
1965 lua_setfield( L, -2, "__metatable"); // settings M mt 1967 lua_setfield( L, -2, "__metatable"); // settings M mt
1966 } 1968 }
1967 1969
1968 lua_pushcclosure( L, LG_lane_new, 1); // settings M lane_new 1970 lua_pushcclosure( L, LG_lane_new, 1); // settings M lane_new
1969 lua_setfield( L, -2, "lane_new"); // settings M 1971 lua_setfield( L, -2, "lane_new"); // settings M
1970 1972
1971 // we can't register 'lanes.require' normally because we want to create an upvalued closure 1973 // we can't register 'lanes.require' normally because we want to create an upvalued closure
1972 lua_getglobal( L, "require"); // settings M require 1974 lua_getglobal( L, "require"); // settings M require
1973 lua_pushcclosure( L, LG_require, 1); // settings M lanes.require 1975 lua_pushcclosure( L, LG_require, 1); // settings M lanes.require
1974 lua_setfield( L, -2, "require"); // settings M 1976 lua_setfield( L, -2, "require"); // settings M
1975 1977
1976 lua_pushfstring( 1978 lua_pushfstring(
1977 L, "%d.%d.%d" 1979 L, "%d.%d.%d"
1978 , LANES_VERSION_MAJOR, LANES_VERSION_MINOR, LANES_VERSION_PATCH 1980 , LANES_VERSION_MAJOR, LANES_VERSION_MINOR, LANES_VERSION_PATCH
1979 ); // settings M VERSION 1981 ); // settings M VERSION
1980 lua_setfield( L, -2, "version"); // settings M 1982 lua_setfield( L, -2, "version"); // settings M
1981 1983
1982 lua_pushinteger(L, THREAD_PRIO_MAX); // settings M THREAD_PRIO_MAX 1984 lua_pushinteger(L, THREAD_PRIO_MAX); // settings M THREAD_PRIO_MAX
1983 lua_setfield( L, -2, "max_prio"); // settings M 1985 lua_setfield( L, -2, "max_prio"); // settings M
1984 1986
1985 push_unique_key( L, CANCEL_ERROR); // settings M CANCEL_ERROR 1987 push_unique_key( L, CANCEL_ERROR); // settings M CANCEL_ERROR
1986 lua_setfield( L, -2, "cancel_error"); // settings M 1988 lua_setfield( L, -2, "cancel_error"); // settings M
1987 1989
1988 STACK_MID( L, 2); // reference stack contains only the function argument 'settings' 1990 STACK_MID( L, 2); // reference stack contains only the function argument 'settings'
1989 // we'll need this every time we transfer some C function from/to this state 1991 // we'll need this every time we transfer some C function from/to this state