1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Adjust styles [ci skip]

* --procnames-start-lines
This commit is contained in:
Nobuyoshi Nakada 2021-07-18 19:55:07 +09:00
parent 803eb1ee83
commit ab37e6ee7e
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

6
cont.c
View file

@ -1176,12 +1176,14 @@ cont_new(VALUE klass)
return cont;
}
VALUE rb_fiberptr_self(struct rb_fiber_struct *fiber)
VALUE
rb_fiberptr_self(struct rb_fiber_struct *fiber)
{
return fiber->cont.self;
}
unsigned int rb_fiberptr_blocking(struct rb_fiber_struct *fiber)
unsigned int
rb_fiberptr_blocking(struct rb_fiber_struct *fiber)
{
return fiber->blocking;
}