2020-04-10 01:11:40 -04:00
|
|
|
#ifndef INTERNAL_CONT_H /*-*-C-*-vi:se ft=c:*/
|
|
|
|
#define INTERNAL_CONT_H
|
|
|
|
/**
|
2019-11-29 01:18:34 -05:00
|
|
|
* @file
|
2020-04-08 00:28:13 -04:00
|
|
|
* @author Ruby developers <ruby-core@ruby-lang.org>
|
2019-11-29 01:18:34 -05: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 00:28:13 -04:00
|
|
|
* @brief Internal header for Fiber.
|
2019-11-29 01:18:34 -05:00
|
|
|
*/
|
2019-12-03 00:47:38 -05:00
|
|
|
#include "ruby/ruby.h" /* for VALUE */
|
|
|
|
|
|
|
|
struct rb_thread_struct; /* in vm_core.h */
|
2020-02-29 02:58:33 -05:00
|
|
|
struct rb_fiber_struct; /* in cont.c */
|
2019-11-29 01:18:34 -05:00
|
|
|
|
|
|
|
/* cont.c */
|
|
|
|
VALUE rb_obj_is_fiber(VALUE);
|
|
|
|
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));
|
2020-02-29 02:58:33 -05:00
|
|
|
void rb_fiber_init_mjit_cont(struct rb_fiber_struct *fiber);
|
2019-11-29 01:18:34 -05:00
|
|
|
|
|
|
|
#endif /* INTERNAL_CONT_H */
|