[PATCH] Changed json formatter to escape strings according to the spec

2017-01-18 Thread Waldemar Kozaczuk
Changed formatter::to_json methods that format string to JSON to properly escape according to http://www.json.org/. Fixes #836. Signed-off-by: Waldemar Kozaczuk --- modules/httpserver/json/formatter.cc | 28 ++-- modules/httpserver/json/formatter.hh | 2 ++ 2 files cha

DevOps Engineer @ San Francisco, CA

2017-01-18 Thread govind ramanujam
Hello, Hope you are doing great We have an urgent below *"DevOps Engineer”* position with one of our client for C2C position at *San Francisco,CA.* If you are interested please share your updated resume along with contact details to *govind_ramanu...@visionisys.com * *Job Title : San F

Re: [PATCH] pthread: allow unpinning thread

2017-01-18 Thread Benoît CANET
Reviewed-by: Benoît Canet 2017-01-18 10:32 GMT+01:00 Nadav Har'El : > Allow unpinning a thread with pthread_setaffinity_np() and > sched_setaffinity() by setting the CPU mask to all CPUs. > > We still do not support setting the CPU mask to an arbitrary subset of > CPUs - just to either one CPU,

[PATCH] pthread: allow unpinning thread

2017-01-18 Thread Nadav Har'El
Allow unpinning a thread with pthread_setaffinity_np() and sched_setaffinity() by setting the CPU mask to all CPUs. We still do not support setting the CPU mask to an arbitrary subset of CPUs - just to either one CPU, or all of them. Fixes #778 Signed-off-by: Nadav Har'El --- libc/pthread.cc