git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
samuel 2018-11-20 10:18:01 +00:00
Родитель 972cc2d50b
Коммит 0ba0ad8b41
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -19,10 +19,10 @@ extern "C" {
/* This doesn't include thread information block */
const size_t COROUTINE_REGISTERS = 4;
struct coroutine_context
typedef struct
{
void **stack_pointer;
};
} coroutine_context;
typedef void(__fastcall * coroutine_start)(coroutine_context *from, coroutine_context *self);

Просмотреть файл

@ -19,10 +19,10 @@ extern "C" {
const size_t COROUTINE_REGISTERS = 8;
const size_t COROUTINE_XMM_REGISTERS = 1+10*2;
struct coroutine_context
typedef struct
{
void **stack_pointer;
};
} coroutine_context;
typedef void(* coroutine_start)(coroutine_context *from, coroutine_context *self);