From 5142b50dab9731fb0c508f8e24666865e2b84e4c Mon Sep 17 00:00:00 2001 From: Petr Štetiar Date: Sat, 6 Nov 2010 00:36:53 +0000 Subject: vlc_1.1.4.1: Why is `lua5.1-native` not added to `DEPENDS` automatically? MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Paul Menzel [2010-11-06 10:31:25]: > Or is is inevitable to add `lua5.1-native` to `DEPENDS`? You have to. As an example I've attached for you my recipe for lua-lanes, which uses luac also. -- ynezz >From 865463173cbb5d70282ea69c2c84084e435578e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0tetiar?= Date: Sun, 10 Oct 2010 10:24:39 +0200 Subject: [PATCH] lua-lanes: add new recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Štetiar Signed-off-by: Khem Raj --- .../0001-fix-LanesTimer-inifinite-thread-GC.patch | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 recipes/lua/lua-lanes-2.0.6/0001-fix-LanesTimer-inifinite-thread-GC.patch (limited to 'recipes/lua/lua-lanes-2.0.6/0001-fix-LanesTimer-inifinite-thread-GC.patch') diff --git a/recipes/lua/lua-lanes-2.0.6/0001-fix-LanesTimer-inifinite-thread-GC.patch b/recipes/lua/lua-lanes-2.0.6/0001-fix-LanesTimer-inifinite-thread-GC.patch new file mode 100644 index 0000000000..18fb36bbbd --- /dev/null +++ b/recipes/lua/lua-lanes-2.0.6/0001-fix-LanesTimer-inifinite-thread-GC.patch @@ -0,0 +1,31 @@ +From 69583ec6fc6cd18a0248d1233193bb2407dbda04 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20=C5=A0tetiar?= +Date: Sun, 31 Oct 2010 23:02:49 +0100 +Subject: [PATCH] fix LanesTimer inifinite thread GC +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +threading.c 394: pthread_cond_destroy(ref) failed, 16 EBUSY + +Signed-off-by: Petr Štetiar +--- + src/lanes.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/src/lanes.c b/src/lanes.c +index c02c540..54cfa7a 100644 +--- a/src/lanes.c ++++ b/src/lanes.c +@@ -1559,7 +1559,7 @@ LUAG_FUNC( thread_gc ) { + + // We can read 's->status' without locks, but not wait for it + // +- if (s->status < DONE) { ++ if (s->status < DONE && strcmp(s->threadName, "LanesTimer")) { + // + selfdestruct_add(s); + assert( s->selfdestruct_next ); +-- +1.7.0.4 + -- cgit 1.2.3-korg