We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75bcbd commit b95a80fCopy full SHA for b95a80f
coroutine.c
@@ -103,7 +103,6 @@ void __attribute__((naked)) coroutine_yield(void)
103
104
void __attribute__((naked)) coroutine_sleep_read(int fd)
105
{
106
- (void) fd;
107
// @arch
108
asm(
109
" pushq %rdi\n"
@@ -121,7 +120,6 @@ void __attribute__((naked)) coroutine_sleep_read(int fd)
121
120
122
void __attribute__((naked)) coroutine_sleep_write(int fd)
123
124
125
126
127
@@ -140,7 +138,6 @@ void __attribute__((naked)) coroutine_sleep_write(int fd)
140
138
void __attribute__((naked)) coroutine_restore_context(void *rsp)
141
139
142
143
- (void)rsp;
144
145
" movq %rdi, %rsp\n"
146
" popq %r15\n"
0 commit comments