mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-26 00:00:16 +02:00
11 lines
109 B
C
11 lines
109 B
C
struct Context {
|
|
void (*wake) (void*);
|
|
|
|
};
|
|
|
|
struct Task {
|
|
void* data;
|
|
void* (*poll) (void*);
|
|
};
|
|
|