diff options
author | Mike Pall <mike> | 2013-09-10 00:02:20 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2013-09-10 00:02:20 +0200 |
commit | 29078518c14a4f49224fc58c57053bda2e8284dc (patch) | |
tree | 8112520c4b45e5a7953fcdeff8d23a7a1b2e44bf /src/lib_jit.c | |
parent | 2befb8b1de3c6dec4d326a01419615a8bab4eeef (diff) | |
download | luajit-29078518c14a4f49224fc58c57053bda2e8284dc.tar.gz luajit-29078518c14a4f49224fc58c57053bda2e8284dc.tar.bz2 luajit-29078518c14a4f49224fc58c57053bda2e8284dc.zip |
Add -jp=fl mode and minor fixes.
Diffstat (limited to 'src/lib_jit.c')
-rw-r--r-- | src/lib_jit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib_jit.c b/src/lib_jit.c index 9e4fd3a8..e8acb55a 100644 --- a/src/lib_jit.c +++ b/src/lib_jit.c | |||
@@ -563,7 +563,7 @@ static void jit_profile_callback(lua_State *L2, lua_State *L, int samples, | |||
563 | } | 563 | } |
564 | } | 564 | } |
565 | 565 | ||
566 | /* profile.start(mode, func) */ | 566 | /* profile.start(mode, cb) */ |
567 | LJLIB_CF(jit_profile_start) | 567 | LJLIB_CF(jit_profile_start) |
568 | { | 568 | { |
569 | GCtab *registry = tabV(registry(L)); | 569 | GCtab *registry = tabV(registry(L)); |
@@ -597,7 +597,7 @@ LJLIB_CF(jit_profile_stop) | |||
597 | return 0; | 597 | return 0; |
598 | } | 598 | } |
599 | 599 | ||
600 | /* profile.dumpstack([thread,] fmt, depth) */ | 600 | /* dump = profile.dumpstack([thread,] fmt, depth) */ |
601 | LJLIB_CF(jit_profile_dumpstack) | 601 | LJLIB_CF(jit_profile_dumpstack) |
602 | { | 602 | { |
603 | lua_State *L2 = L; | 603 | lua_State *L2 = L; |