Glauber Costa
Glauber Costa
Fixes #22
Just got this message when this crate was compiled as part of my dependencies.: ``` error[E0277]: `*mut c_void` cannot be sent between threads safely --> /home/glauber/.cargo/registry/src/github.com-1ecc6299db9ec823/membarrier-0.2.2/src/lib.rs:252:9 | 252 | /...
I figured I'd have to adapt the code a bit to remove that, but right now as of 2020 just by removing the feature the code compile just fine with...
If we look at the API defined by `net::TcpStream`, `net::UdpSocket`, and others there are many options we are not implementing (setting timeouts, multicast, etc). They shouldn't be hard to implement...
Rust has the very helpful macros from `log` : `info!`, `warn!`, etc. It would be helpful to have our own, that would include the executor name or ID on it....
For the sake of simplicity we are assuming the write-buffer alignment to be 4096kB, and the read-buffer alignment to be 512b. Those are likely good across the majority of systems,...
The "bandwidth over 100 sockets" test is only able to use two threads. Therefore it will not scale as well as Tokio and other frameworks. This is totally fine because...
Found by a user in a workshop I conducted today. To reproduce, create a chiselstrike project, add an empty file `endpoints/something.ts`, and apply: ``` Error: could not import endpoint code...
This PR implements the bare minimum of complex policies in typescript. In particular: * policies are not persisted * only access control works * only save() is checked * the...