-
Notifications
You must be signed in to change notification settings - Fork 67
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
Add feature disable_cache_oblivious
to jemallocator re-exports
#104
Conversation
Welcome @miried! It looks like this is your first PR to tikv/jemallocator 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM
jemallocator/README.md
Outdated
|
||
* `alloc_trait` When the `alloc_trait` feature of this crate is enabled, it also implements the `Alloc` trait, allowing usage in collections. | ||
|
||
* `default` feature is `background_threads_runtime_support` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a trailing .
.
Can you also help fix clippy and docs warnings? |
I'm having trouble reproducing this locally.
there seem to be 2 competing folders As for the clippy & docs, was that caused by my patch? or should this be addressed in a separate PR? |
The error is probably due to #32.
Unlikely caused by your patch. It may just due to rustc evolution itself. Addressed in this PR or a separate PR are both OK, but we need to get all CI green before merging. |
that helped. see #105 for patch |
Signed-off-by: Michael Rieder <[email protected]>
Signed-off-by: Michael Rieder <[email protected]>
I rebased the patches on top of the patches. Now I think it will be all green. |
Thank! |
…v#104) Signed-off-by: Michael Rieder <[email protected]>
As described in #103, this feature could not be enabled.
I also updated the
README.md
to describe that there are more features than only the re-exported ones. Le me know if I should add anything else.