Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge mruby 3.3.0 #6169

Merged
merged 12 commits into from
Feb 15, 2024
Merged

Merge mruby 3.3.0 #6169

merged 12 commits into from
Feb 15, 2024

Conversation

mimaki
Copy link
Member

@mimaki mimaki commented Feb 14, 2024

No description provided.

matz and others added 12 commits March 4, 2023 09:27
…5943

Since normal file descriptors and sockets cannot be mixed on the
platform.
For example, the following code was crashing.

```c
#include <mruby.h>
#include <mruby/compile.h>
#include <mruby/proc.h>

int
main(int argc, char *argv[])
{
  mrb_state *mrb = mrb_open();

  mrb_value fiber = mrb_load_string(mrb, "Fiber.new { Fiber.new { 12345.6789 }.transfer }");
  mrb_value res = mrb_fiber_resume(mrb, fiber, 0, NULL);
  mrb_p(mrb, res);

  mrb_close(mrb);

  return 0;
}
```
@mimaki mimaki requested a review from matz as a code owner February 14, 2024 10:05
@matz matz merged commit 9e1ed10 into master Feb 15, 2024
19 of 20 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants