| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge pull request #1516 from wiredtiger/windows-errors | Michael Cahill | 2015-01-07 | 4 | -11/+102 |
|\ |
|
| * | os_errno.c: In function '__wt_strerror': | Keith Bostic | 2015-01-04 | 1 | -3/+3 |
| * | Keep wiredtiger_strerror() as thread-safe as possible by splitting the | Keith Bostic | 2015-01-04 | 1 | -16/+33 |
| * | Merge Mark Benvenuto's changes (c85f885ea08c575dee7f1594f1c0371dea2caec6). | Keith Bostic | 2015-01-04 | 4 | -12/+59 |
| * | Add wiredtiger_strerror_r, a thread-safe version of wiredtiger_strerror, | Keith Bostic | 2014-12-24 | 1 | -0/+27 |
* | | Cache a maximum of 2MB per session for scratch buffers (configurable via an u... | Michael Cahill | 2015-01-05 | 1 | -1/+1 |
* | | Copyright notices: add MongoDB, update to 2015. | Keith Bostic | 2015-01-04 | 25 | -0/+25 |
|/ |
|
* | Prettiness police, NULL vs. nul, KNF, no functional change. | Keith Bostic | 2014-12-22 | 1 | -6/+6 |
* | Add __wt_getenv to workaround caching in MSVC CRT's getenv implementation. | Mark Benvenuto | 2014-12-19 | 1 | -0/+35 |
* | snprintf - Implement a custom version of snprintf match the | Mark Benvenuto | 2014-12-17 | 2 | -5/+37 |
* | Most WiredTiger calloc calls are to allocate a single structure, | Keith Bostic | 2014-12-15 | 3 | -3/+3 |
* | Clean up a few __wt_calloc() calls that can be __wt_calloc_def() instead. | Keith Bostic | 2014-12-15 | 2 | -2/+2 |
* | Free scratch buffer with scr_free instead of buf_free | Mark Benvenuto | 2014-12-12 | 1 | -2/+2 |
* | Refactor the fallocate call. | Keith Bostic | 2014-11-17 | 1 | -1/+1 |
* | Fix __wt_open to handle new WT_FILE_TYPE_DIRECTORY | Mark Benvenuto | 2014-11-10 | 1 | -6/+17 |
* | Typo. | Susan LoVerso | 2014-11-10 | 1 | -1/+1 |
* | Keep an open file handle on the log directory. #1343 | Susan LoVerso | 2014-11-06 | 1 | -0/+12 |
* | Merge branch 'develop' into directory-sync-log-files | Keith Bostic | 2014-11-06 | 1 | -126/+0 |
|\ |
|
| * | Use builtin reader/writer lock on Windows | Mark Benvenuto | 2014-11-04 | 1 | -126/+0 |
* | | Move directory sync code into os_fsync.c, only sync directories when creating... | Michael Cahill | 2014-11-06 | 2 | -8/+12 |
* | | Let logging manage syncing the directory itself #1343 | Susan LoVerso | 2014-11-05 | 1 | -0/+8 |
|/ |
|
* | Make explicit calls ascii versions of Windows functions | Mark Benvenuto | 2014-10-30 | 8 | -13/+13 |
* | We don't yet run on any system where pthread_t is an opaque type (and I bet | Keith Bostic | 2014-10-29 | 1 | -10/+3 |
* | Fix Compile | Mark Benvenuto | 2014-10-29 | 1 | -1/+1 |
* | Merge pull request #1312 from wiredtiger/readwrite-locks | Michael Cahill | 2014-10-29 | 2 | -124/+126 |
|\ |
|
| * | Change read/write locks to no longer track if an exclusive lock was | Keith Bostic | 2014-10-28 | 1 | -31/+7 |
| * | More comment cleanup, make Windows & POSIX code match. | Keith Bostic | 2014-10-25 | 1 | -4/+4 |
| * | Use the simple version of calloc | Keith Bostic | 2014-10-25 | 1 | -1/+1 |
| * | Don't bother printing out the address of the lock structure in verbose | Keith Bostic | 2014-10-24 | 1 | -26/+45 |
| * | Replace the POSIX read/write lock code with our own implementation so | Keith Bostic | 2014-10-24 | 1 | -9/+8 |
| * | Split the condition variable and read/write lock code into separate | Keith Bostic | 2014-10-24 | 2 | -124/+132 |
* | | Add pid:tid separator back in. | Susan LoVerso | 2014-10-28 | 1 | -1/+1 |
|/ |
|
* | The type returned from pthread_self() is opaque, we can't cast it to a | Keith Bostic | 2014-10-22 | 1 | -3/+1 |
* | Put the format's '%' in the string, so WT_SIZET_FMT looks like | Keith Bostic | 2014-10-20 | 2 | -9/+9 |
* | Don't prefix the WiredTiger thread types with an underscore, we don't do it | Keith Bostic | 2014-10-19 | 1 | -2/+2 |
* | Merge pull request #1284 from markbenvenuto/pthread_typedef | Keith Bostic | 2014-10-19 | 1 | -2/+2 |
|\ |
|
| * | Introduce new typedefs for pthread typedefs in platform agnostic code | Mark Benvenuto | 2014-10-15 | 1 | -2/+2 |
* | | Fix _wt_epoch | Mark Benvenuto | 2014-10-17 | 2 | -3/+3 |
* | | Commit 752f6a1 removes the Windows version of posix_memalign, which | Keith Bostic | 2014-10-17 | 1 | -185/+0 |
* | | Windows Fixes | Mark Benvenuto | 2014-10-16 | 3 | -52/+6 |
* | | MSVC doesn't yet support "%zu", replace with #defines. | Keith Bostic | 2014-10-15 | 2 | -11/+15 |
|/ |
|
* | Enhance the comment, note for the record we can map past EOF. | Keith Bostic | 2014-10-15 | 1 | -2/+5 |
* | Use %zu as the printf format for size_t. | Keith Bostic | 2014-10-15 | 1 | -12/+8 |
* | Record the fh->size and consistently mmap and return that same size. | Susan LoVerso | 2014-10-15 | 1 | -5/+11 |
* | Add mapping pointers to the verbose output from the map/unmap system | Keith Bostic | 2014-10-15 | 1 | -6/+5 |
* | Typo, clear the right file handle on error. | Keith Bostic | 2014-10-13 | 1 | -1/+1 |
* | Remove __open_directory_sync call, not needed on Windows. | Keith Bostic | 2014-10-13 | 1 | -15/+0 |
* | Merged fallocate-restructure before merging Mark's changes: cherry pick | Keith Bostic | 2014-10-13 | 2 | -14/+5 |
* | Rename functions, and fix error handling | Mark Benvenuto | 2014-10-13 | 3 | -8/+13 |
* | Use a separate file handle for file truncation & allocation | Mark Benvenuto | 2014-10-13 | 3 | -5/+25 |