summaryrefslogtreecommitdiff
path: root/src/os_win
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #1516 from wiredtiger/windows-errorsMichael Cahill2015-01-074-11/+102
|\
| * os_errno.c: In function '__wt_strerror':Keith Bostic2015-01-041-3/+3
| * Keep wiredtiger_strerror() as thread-safe as possible by splitting theKeith Bostic2015-01-041-16/+33
| * Merge Mark Benvenuto's changes (c85f885ea08c575dee7f1594f1c0371dea2caec6).Keith Bostic2015-01-044-12/+59
| * Add wiredtiger_strerror_r, a thread-safe version of wiredtiger_strerror,Keith Bostic2014-12-241-0/+27
* | Cache a maximum of 2MB per session for scratch buffers (configurable via an u...Michael Cahill2015-01-051-1/+1
* | Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-0425-0/+25
|/
* Prettiness police, NULL vs. nul, KNF, no functional change.Keith Bostic2014-12-221-6/+6
* Add __wt_getenv to workaround caching in MSVC CRT's getenv implementation.Mark Benvenuto2014-12-191-0/+35
* snprintf - Implement a custom version of snprintf match theMark Benvenuto2014-12-172-5/+37
* Most WiredTiger calloc calls are to allocate a single structure,Keith Bostic2014-12-153-3/+3
* Clean up a few __wt_calloc() calls that can be __wt_calloc_def() instead.Keith Bostic2014-12-152-2/+2
* Free scratch buffer with scr_free instead of buf_freeMark Benvenuto2014-12-121-2/+2
* Refactor the fallocate call.Keith Bostic2014-11-171-1/+1
* Fix __wt_open to handle new WT_FILE_TYPE_DIRECTORYMark Benvenuto2014-11-101-6/+17
* Typo.Susan LoVerso2014-11-101-1/+1
* Keep an open file handle on the log directory. #1343Susan LoVerso2014-11-061-0/+12
* Merge branch 'develop' into directory-sync-log-filesKeith Bostic2014-11-061-126/+0
|\
| * Use builtin reader/writer lock on WindowsMark Benvenuto2014-11-041-126/+0
* | Move directory sync code into os_fsync.c, only sync directories when creating...Michael Cahill2014-11-062-8/+12
* | Let logging manage syncing the directory itself #1343Susan LoVerso2014-11-051-0/+8
|/
* Make explicit calls ascii versions of Windows functionsMark Benvenuto2014-10-308-13/+13
* We don't yet run on any system where pthread_t is an opaque type (and I betKeith Bostic2014-10-291-10/+3
* Fix CompileMark Benvenuto2014-10-291-1/+1
* Merge pull request #1312 from wiredtiger/readwrite-locksMichael Cahill2014-10-292-124/+126
|\
| * Change read/write locks to no longer track if an exclusive lock wasKeith Bostic2014-10-281-31/+7
| * More comment cleanup, make Windows & POSIX code match.Keith Bostic2014-10-251-4/+4
| * Use the simple version of callocKeith Bostic2014-10-251-1/+1
| * Don't bother printing out the address of the lock structure in verboseKeith Bostic2014-10-241-26/+45
| * Replace the POSIX read/write lock code with our own implementation soKeith Bostic2014-10-241-9/+8
| * Split the condition variable and read/write lock code into separateKeith Bostic2014-10-242-124/+132
* | Add pid:tid separator back in.Susan LoVerso2014-10-281-1/+1
|/
* The type returned from pthread_self() is opaque, we can't cast it to aKeith Bostic2014-10-221-3/+1
* Put the format's '%' in the string, so WT_SIZET_FMT looks likeKeith Bostic2014-10-202-9/+9
* Don't prefix the WiredTiger thread types with an underscore, we don't do itKeith Bostic2014-10-191-2/+2
* Merge pull request #1284 from markbenvenuto/pthread_typedefKeith Bostic2014-10-191-2/+2
|\
| * Introduce new typedefs for pthread typedefs in platform agnostic codeMark Benvenuto2014-10-151-2/+2
* | Fix _wt_epochMark Benvenuto2014-10-172-3/+3
* | Commit 752f6a1 removes the Windows version of posix_memalign, whichKeith Bostic2014-10-171-185/+0
* | Windows FixesMark Benvenuto2014-10-163-52/+6
* | MSVC doesn't yet support "%zu", replace with #defines.Keith Bostic2014-10-152-11/+15
|/
* Enhance the comment, note for the record we can map past EOF.Keith Bostic2014-10-151-2/+5
* Use %zu as the printf format for size_t.Keith Bostic2014-10-151-12/+8
* Record the fh->size and consistently mmap and return that same size.Susan LoVerso2014-10-151-5/+11
* Add mapping pointers to the verbose output from the map/unmap systemKeith Bostic2014-10-151-6/+5
* Typo, clear the right file handle on error.Keith Bostic2014-10-131-1/+1
* Remove __open_directory_sync call, not needed on Windows.Keith Bostic2014-10-131-15/+0
* Merged fallocate-restructure before merging Mark's changes: cherry pickKeith Bostic2014-10-132-14/+5
* Rename functions, and fix error handlingMark Benvenuto2014-10-133-8/+13
* Use a separate file handle for file truncation & allocationMark Benvenuto2014-10-133-5/+25