2020-04-10 08:11:40 +03:00
|
|
|
#ifndef INTERNAL_CONT_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define INTERNAL_CONT_H
|
|
|
|
/**
|
2020-04-08 07:28:13 +03:00
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
2019-11-29 09:18:34 +03:00
|
|
|
* @copyright This file is a part of the programming language Ruby.
|
|
|
|
* Permission is hereby granted, to either redistribute and/or
|
|
|
|
* modify this file, provided that the conditions mentioned in the
|
|
|
|
* file COPYING are met. Consult the file for details.
|
2020-04-08 07:28:13 +03:00
|
|
|
* @brief Internal header for Fiber.
|
2019-11-29 09:18:34 +03:00
|
|
|
*/
|
2019-12-03 08:47:38 +03:00
|
|
|
#include "ruby/ruby.h" /* for VALUE */
|
2022-10-17 19:27:59 +03:00
|
|
|
#include "iseq.h"
|
2019-12-03 08:47:38 +03:00
|
|
|
|
|
|
|
struct rb_thread_struct; /* in vm_core.h */
|
2020-02-29 10:58:33 +03:00
|
|
|
struct rb_fiber_struct; /* in cont.c */
|
2022-07-13 02:42:14 +03:00
|
|
|
struct rb_execution_context_struct; /* in vm_core.c */
|
2019-11-29 09:18:34 +03:00
|
|
|
|
|
|
|
/* cont.c */
|
|
|
|
void rb_fiber_reset_root_local_storage(struct rb_thread_struct *);
|
|
|
|
void ruby_register_rollback_func_for_ensure(VALUE (*ensure_func)(VALUE), VALUE (*rollback_func)(VALUE));
|
2022-10-20 03:18:59 +03:00
|
|
|
void rb_jit_cont_init(void);
|
2022-10-18 19:07:11 +03:00
|
|
|
void rb_jit_cont_each_iseq(rb_iseq_callback callback, void *data);
|
2022-10-17 19:27:59 +03:00
|
|
|
void rb_jit_cont_finish(void);
|
2019-11-29 09:18:34 +03:00
|
|
|
|
2022-12-01 13:00:33 +03:00
|
|
|
// Copy locals from the current execution to the specified fiber.
|
|
|
|
VALUE rb_fiber_inherit_storage(struct rb_execution_context_struct *ec, struct rb_fiber_struct *fiber);
|
|
|
|
|
2020-09-05 07:26:24 +03:00
|
|
|
VALUE rb_fiberptr_self(struct rb_fiber_struct *fiber);
|
2021-02-09 09:39:56 +03:00
|
|
|
unsigned int rb_fiberptr_blocking(struct rb_fiber_struct *fiber);
|
2022-07-13 02:42:14 +03:00
|
|
|
struct rb_execution_context_struct * rb_fiberptr_get_ec(struct rb_fiber_struct *fiber);
|
2020-09-05 07:26:24 +03:00
|
|
|
|
2019-11-29 09:18:34 +03:00
|
|
|
#endif /* INTERNAL_CONT_H */
|