-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(driver): move future state into RawOp #251
feat(driver): move future state into RawOp #251
Conversation
1934885
to
11a89a1
Compare
612927e
to
f6e7c4a
Compare
f6e7c4a adds a large patch to reduce the usage of slab in compio-driver. The allocated pointer itself is a good user-defined data for the operation. On Windows, it is also the pointer of However, the patch makes the code less readable. There are many conversions between pointer and usize, and the @George-Miao @oxalica What do you think of the patch? |
If I'm understanding correctly:
Is that correct? |
Bingo! |
In this way, no need the
OpRuntime
, and the HashMap could be removed.