Skip to content

Commit

Permalink
update trealla
Browse files Browse the repository at this point in the history
  • Loading branch information
guregu committed Mar 1, 2024
1 parent f7195c5 commit bb0a078
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/trealla
Submodule trealla updated 60 files
+2 −2 .github/workflows/build.yaml
+66 −63 Makefile
+90 −108 README.md
+11 −1 docs/ARCHITECTURE.md
+7 −6 library/builtins.pl
+20 −9 library/charsio.pl
+0 −29 library/lists.pl
+1 −1 library/pseudojson.pl
+1 −1 library/wasm.pl
+44 −1 library/wasm_js.pl
+0 −15 samples/fib2.pl
+25 −0 samples/fib_fast.pl
+0 −195 samples/regex.pl
+0 −0 samples/test_concurrent.pl
+0 −0 samples/test_curl.pl
+0 −0 samples/test_db.pl
+0 −0 samples/test_index.pl
+0 −0 samples/test_linda.pl
+0 −0 samples/test_raylib1.pl
+0 −0 samples/test_raylib2.pl
+0 −35 samples/test_threads.pl
+64 −0 samples/test_threads1.pl
+72 −0 samples/test_threads2.pl
+60 −0 samples/test_threads3.pl
+49 −0 samples/test_threads4.pl
+11 −0 samples/test_threads5.pl
+52 −0 samples/test_threads6.pl
+16 −0 src/bif_atts.c
+44 −32 src/bif_control.c
+9 −0 src/bif_csv.c
+149 −42 src/bif_database.c
+40 −1 src/bif_format.c
+22 −18 src/bif_functions.c
+217 −196 src/bif_predicates.c
+10 −0 src/bif_sort.c
+10 −0 src/bif_sregex.c
+39 −15 src/bif_streams.c
+689 −642 src/bif_threads.c
+3 −2 src/builtins.h
+4 −99 src/heap.c
+3 −2 src/heap.h
+74 −11 src/history.c
+63 −19 src/internal.h
+12 −30 src/module.c
+0 −3 src/module.h
+18 −12 src/parser.c
+30 −22 src/print.c
+103 −44 src/prolog.c
+13 −5 src/prolog.h
+56 −45 src/query.c
+2 −17 src/query.h
+25 −12 src/skiplist.c
+0 −0 src/skiplist.h
+4 −6 src/threads.h
+38 −29 src/unify.c
+0 −0 src/utf8.c
+0 −0 src/utf8.h
+1 −1 src/wasm/spin.c
+1 −1 tests/tests/test082.expected
+1 −1 tests/tests/test091.expected
1 change: 1 addition & 0 deletions trealla/interop.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ func (pl *prolog) hostCall( /*c *wasmtime.Caller,*/ subquery, msgptr, msgsize, r

msg, err := unmarshalTerm([]byte(msgraw))
if err != nil {
err = fmt.Errorf("%w (raw msg: %s)", err, msgraw)
return 0, wasmtime.NewTrap(err.Error())
}

Expand Down
Binary file modified trealla/libtpl.wasm
Binary file not shown.

0 comments on commit bb0a078

Please sign in to comment.