mirror of
https://github.com/janet-lang/janet
synced 2024-11-28 02:59:54 +00:00
Address #926 - enter the event loop from janet_dobytes or
janet_dostring.
This commit is contained in:
parent
9f733b25db
commit
1c96c7163a
@ -2,6 +2,8 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Unreleased - ???
|
## Unreleased - ???
|
||||||
|
- C functions `janet_dobytes` and `janet_dostring` will now enter the event loop if it is enabled.
|
||||||
|
- Fix hashing regression - hash of negative 0 must be the same as positive 0 since they are equal.
|
||||||
- The `flycheck` function no longer pollutes the module/cache
|
- The `flycheck` function no longer pollutes the module/cache
|
||||||
- Fix quasiquote bug in compiler
|
- Fix quasiquote bug in compiler
|
||||||
- Disallow use of `cancel` and `resume` on fibers scheduled or created with `ev/go`, as well as the root
|
- Disallow use of `cancel` and `resume` on fibers scheduled or created with `ev/go`, as well as the root
|
||||||
|
1
Makefile
1
Makefile
@ -238,6 +238,7 @@ build/janet-%.tar.gz: $(JANET_TARGET) \
|
|||||||
mkdir -p build/$(JANET_DIST_DIR)/lib/
|
mkdir -p build/$(JANET_DIST_DIR)/lib/
|
||||||
cp $(JANET_LIBRARY) $(JANET_STATIC_LIBRARY) build/$(JANET_DIST_DIR)/lib/
|
cp $(JANET_LIBRARY) $(JANET_STATIC_LIBRARY) build/$(JANET_DIST_DIR)/lib/
|
||||||
mkdir -p build/$(JANET_DIST_DIR)/man/man1/
|
mkdir -p build/$(JANET_DIST_DIR)/man/man1/
|
||||||
|
cp janet.1 build/$(JANET_DIST_DIR)/man/man1/janet.1
|
||||||
mkdir -p build/$(JANET_DIST_DIR)/src/
|
mkdir -p build/$(JANET_DIST_DIR)/src/
|
||||||
cp build/c/janet.c build/c/shell.c build/$(JANET_DIST_DIR)/src/
|
cp build/c/janet.c build/c/shell.c build/$(JANET_DIST_DIR)/src/
|
||||||
cp CONTRIBUTING.md LICENSE README.md build/$(JANET_DIST_DIR)/
|
cp CONTRIBUTING.md LICENSE README.md build/$(JANET_DIST_DIR)/
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2021 Calvin Rose
|
* Copyright (c) 2022 Calvin Rose
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to
|
* of this software and associated documentation files (the "Software"), to
|
||||||
@ -100,6 +100,14 @@ int janet_dobytes(JanetTable *env, const uint8_t *bytes, int32_t len, const char
|
|||||||
/* Clean up and return errors */
|
/* Clean up and return errors */
|
||||||
janet_parser_deinit(&parser);
|
janet_parser_deinit(&parser);
|
||||||
if (where) janet_gcunroot(janet_wrap_string(where));
|
if (where) janet_gcunroot(janet_wrap_string(where));
|
||||||
|
#ifdef JANET_EV
|
||||||
|
/* Enter the event loop if we are not already in it */
|
||||||
|
if (janet_vm.stack_n == 0) {
|
||||||
|
janet_gcroot(ret);
|
||||||
|
janet_loop();
|
||||||
|
janet_gcunroot(ret);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
if (out) *out = ret;
|
if (out) *out = ret;
|
||||||
return errflags;
|
return errflags;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2021 Calvin Rose
|
* Copyright (c) 2022 Calvin Rose
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
* of this software and associated documentation files (the "Software"), to
|
* of this software and associated documentation files (the "Software"), to
|
||||||
|
Loading…
Reference in New Issue
Block a user