summaryrefslogtreecommitdiffhomepage
path: root/include/mruby.h
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-03-19 08:59:45 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-03-19 08:59:45 +0900
commitd9107fd157111ef1bdb39304534ec877fd815a83 (patch)
tree8de5892222fcd7ef1a7e6e1fbc62078a8add4f66 /include/mruby.h
parent9084e035563a6a2ee312defd912f12acdebbdeec (diff)
parent4be7a8b7e8fd9139c2ddb8bdae550f70dbdba331 (diff)
downloadmruby-d9107fd157111ef1bdb39304534ec877fd815a83.tar.gz
mruby-d9107fd157111ef1bdb39304534ec877fd815a83.zip
Merge pull request #1890 from take-cheeze/fiber_resuming
Revert MRB_FIBER_RESUMED as MRB_FIBER_RESUMING.
Diffstat (limited to 'include/mruby.h')
-rw-r--r--include/mruby.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mruby.h b/include/mruby.h
index 2b2412a46..ca75d2984 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -70,6 +70,7 @@ typedef struct {
enum mrb_fiber_state {
MRB_FIBER_CREATED = 0,
MRB_FIBER_RUNNING,
+ MRB_FIBER_RESUMING,
MRB_FIBER_SUSPENDED,
MRB_FIBER_TERMINATED,
};