From 735809a69b6815c8c3a88f42f42aabc8cb3577b2 Mon Sep 17 00:00:00 2001 From: Putnam Date: Mon, 31 Aug 2020 20:11:52 -0700 Subject: [PATCH] Commented out threaded FFI. --- code/__HELPERS/_extools_api.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/__HELPERS/_extools_api.dm b/code/__HELPERS/_extools_api.dm index 8c00ec643e..709e71038f 100644 --- a/code/__HELPERS/_extools_api.dm +++ b/code/__HELPERS/_extools_api.dm @@ -15,7 +15,7 @@ world << result call_cb("sample.dll", "do_work", /proc/print_result, "arg1", "arg2") - Calls do_work with 2 arguments. The callback is invoked with the result as the single argument. Execution resumes immediately. -*/ + /proc/tffi_initialize() return call(EXTOOLS, "tffi_initialize")() @@ -77,6 +77,7 @@ var/next_promise_id = 0 /proc/call_wait() return call_async(arglist(args)).resolve() +*/ /* Logging -- same exact interface as rust_g logging, but threaded and doesn't go through call()().