1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-13 22:07:13 +00:00

Change some definitions and remove thoughts.md

This commit is contained in:
Calvin Rose
2018-06-02 19:16:13 -04:00
parent 3b30b98ec0
commit b5ed4a875f
8 changed files with 15 additions and 77 deletions

View File

@@ -385,5 +385,5 @@ void dst_clear_memory(void) {
}
/* Primitives for suspending GC. */
int dst_gclock() { return dst_vm_gc_suspend++; }
int dst_gclock(void) { return dst_vm_gc_suspend++; }
void dst_gcunlock(int handle) { dst_vm_gc_suspend = handle; }