summaryrefslogtreecommitdiff
path: root/internal/proc.h
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2019-12-04 12:10:06 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2019-12-26 20:45:12 +0900
commitc524df078044dfbf44215557e7b7a0faaa3bc3db (patch)
tree236775d48315942ba0c59a37adf0cc36d8c66877 /internal/proc.h
parentd0e0c884bb4277e529adbd8d82aae0a651f7edf2 (diff)
downloadruby-c524df078044dfbf44215557e7b7a0faaa3bc3db.tar.gz
internal/proc.h rework
Annotated MJIT_FUNC_EXPORTED functions as such. Declaration of rb_sym_to_proc is moved into this file because the function is defined in proc.c rather than string.c.
Diffstat (limited to 'internal/proc.h')
-rw-r--r--internal/proc.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/internal/proc.h b/internal/proc.h
index 2831afc95c..7f2bec8850 100644
--- a/internal/proc.h
+++ b/internal/proc.h
@@ -9,16 +9,23 @@
* modify this file, provided that the conditions mentioned in the
* file COPYING are met. Consult the file for details.
*/
-
-struct rb_block;
+#include "ruby/ruby.h" /* for rb_block_call_func_t */
+#include "ruby/st.h" /* for st_index_t */
+struct rb_block; /* in vm_core.h */
+struct rb_iseq_struct; /* in vm_core.h */
/* proc.c */
VALUE rb_proc_location(VALUE self);
st_index_t rb_hash_proc(st_index_t hash, VALUE proc);
int rb_block_arity(void);
int rb_block_min_max_arity(int *max);
-VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
VALUE rb_func_lambda_new(rb_block_call_func_t func, VALUE val, int min_argc, int max_argc);
VALUE rb_block_to_s(VALUE self, const struct rb_block *block, const char *additional_info);
+MJIT_SYMBOL_EXPORT_BEGIN
+VALUE rb_func_proc_new(rb_block_call_func_t func, VALUE val);
+VALUE rb_iseq_location(const struct rb_iseq_struct *iseq);
+VALUE rb_sym_to_proc(VALUE sym);
+MJIT_SYMBOL_EXPORT_END
+
#endif /* INTERNAL_PROC_H */