Updating tests for the #start/#end change.

This commit is contained in:
Robin Sommer 2012-07-19 18:57:15 -07:00
parent 87e10b5f97
commit 5cfb8d65c3
123 changed files with 442 additions and 162 deletions

View file

@ -120,8 +120,8 @@ public:
/**
* A version of strerror() that the thread can safely use. This is
* essentially a wrapper around strerror_r(). Note that it keeps a
* single static buffer internally so the result remains valid only
* until the next call.
* single buffer per thread internally so the result remains valid
* only until the next call.
*/
const char* Strerror(int err);
@ -207,6 +207,9 @@ private:
char* buf;
unsigned int buf_len;
// For implementating Strerror().
char* strerr_buffer;
static uint64_t thread_counter;
};