eecheng87 / ESCA

Effective System Call Aggregation
https://eecheng87.github.io/ESCA/
MIT License
38 stars 5 forks source link

Didn't support batch_start() #2

Closed eecheng87 closed 3 years ago

eecheng87 commented 3 years ago

We need to support batch_start() to prevent unintended batching.

It would be like:

write(...);
batch_start();
write(...);
...
batch_flush();