Kristian Høgsberg Kristensen
Kristian Høgsberg Kristensen
To make proc_macros with peg easier, it would be nice to have the implementation of the parser traits used internally exported somehow.
This adds support for the `mbind`, `set_mempolicy` and `get_mempolicy` NUMA syscalls. The `get_mempolicy` syscall has a few different modes of operation, depending on the flags, which is demultiplexed into `get_mempolicy_node`...
Any plans for adding support for NUMA syscalls? ``` extern long get_mempolicy(int *mode, unsigned long *nmask, unsigned long maxnode, void *addr, unsigned flags); extern long mbind(void *start, unsigned long len,...
Enables [`Iterator::collect()`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.collect).
I'm using `quote` to generate code and I have to go through: ``` let map: TokenStream = self.map.build().to_string().parse().unwrap(); ``` to get a `TokenStream` - would it be useful to provide...