summaryrefslogtreecommitdiff
path: root/src/os_posix
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2209 from wiredtiger/more-bool-keithMichael Cahill2015-09-292-4/+4
* WT-2093 Use the C99 bool type to clarify when functions return true/falseMichael Cahill2015-09-281-2/+2
* Merge pull request #2112 from wiredtiger/wt-2025-inline-atomic-functionsMichael Cahill2015-08-193-10/+10
* WT-1481 Fix the count of open files.Michael Cahill2015-08-141-1/+1
* WT-2038 Count and report the total number of data handlesMichael Cahill2015-08-141-2/+2
* WT-2038 Use TAILQ for all lists.Michael Cahill2015-08-132-3/+3
* SERVER-19751 Retry pthread_create on EAGAIN or EINTR.Keith Bostic2015-08-061-2/+4
* Merge pull request #2078 from wiredtiger/union_packingMichael Cahill2015-08-041-1/+1
* Merge pull request #1915 from markbenvenuto/tcmallocKeith Bostic2015-05-281-0/+21
* Merge pull request #1991 from wiredtiger/open-directory-full-pathsueloverso2015-05-251-7/+0
* The OS layer ftruncate() code sets the WT_FH file size, so whenKeith Bostic2015-04-251-3/+1
* CID 72073 (#1 of 1): Redundant test (DEADCODE)Keith Bostic2015-04-251-2/+1
* Fix places where we were using the wrong link for traversing hash buckets.Keith Bostic2015-04-252-3/+3
* Don't sweep unless there's a reason we need to close file handles.Keith Bostic2015-04-251-2/+2
* Use beginthreadex, and ensure we use the correct C calling conventions in all...Mark Benvenuto2015-03-251-1/+1
* Initialize mode. #1785Susan LoVerso2015-03-241-0/+1
* Add a single set of fhandle flags for open and close. #1785Susan LoVerso2015-03-241-16/+14
* Remove WT_UNUSED(session), it's used.Keith Bostic2015-03-221-2/+0
* Merge branch 'develop' into base-config-crashKeith Bostic2015-03-221-1/+7
|\
| * Pass __wt_close() a reference to the WT_FH memory, that way it getsKeith Bostic2015-03-211-1/+7
* | Be a little more defensive, default to "file doesn't exist" under allKeith Bostic2015-03-211-3/+3
* | If the underlying FILE was opened for writing, flush and fsynd itKeith Bostic2015-03-201-7/+19
* | I broke the Windows code linting the POSIX code, fix it up.Keith Bostic2015-03-201-6/+6
* | Push the rest of the FILE handle functions down into the OS-specificKeith Bostic2015-03-201-8/+67
* | Windows wants FILE handles in binary mode, add a mode argument toKeith Bostic2015-03-201-2/+17
* | Split the FILE functions out to os_posix/os_stdio.c, we're going to needKeith Bostic2015-03-201-0/+50
|/
* Fix a comment.Keith Bostic2015-03-201-5/+5
* Only align buffers on Linux if direct I/O is configured. Clarify why we roun...Michael Cahill2015-03-201-2/+6
* Update memory allocation accounting for new pages and realloc.Alex Gorrod2015-03-131-0/+7
* Sign conversion warningsMichael Cahill2015-03-111-1/+1
* Loss of precision (assignment) (long to int).Keith Bostic2015-03-101-2/+4
* remove unneeded assertMark Benvenuto2015-03-091-1/+0
* SERVER-17471: Use uint64_t instead of long since long is compiler specificMark Benvenuto2015-03-092-2/+2
* I broke the Windows error handling code with the WT_SESSION.strerrorKeith Bostic2015-02-181-24/+14
* Merge pull request #1629 from wiredtiger/session-strerrorMichael Cahill2015-02-181-17/+13
|\
| * Replace wiredtiger_strerror_r with WT_SESSION.strerror, reference #1516.Keith Bostic2015-02-021-17/+13
* | Switch the block and file-handle from TAILQ structures to SLISTKeith Bostic2015-02-092-4/+3
* | Coverity 1268396: Null pointer dereferences (REVERSE_INULL)Susan LoVerso2015-02-091-1/+1
* | whitespaceMichael Cahill2015-02-091-2/+1
* | Need to mod hash by array size. #1634Susan LoVerso2015-02-041-1/+2
* | Add name_hash and hash bucket queues for fh and block. #1643Susan LoVerso2015-02-042-5/+15
|/
* whitespaceMichael Cahill2015-01-281-1/+1
* When the database is populated by overflow records and there are moreKeith Bostic2015-01-271-2/+16
* Merge pull request #1516 from wiredtiger/windows-errorsMichael Cahill2015-01-071-0/+46
|\
| * 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-6/+25
| * Add wiredtiger_strerror_r, a thread-safe version of wiredtiger_strerror,Keith Bostic2014-12-241-0/+27
* | Copyright notices: add MongoDB, update to 2015.Keith Bostic2015-01-0429-0/+29
|/
* Prettiness police, NULL vs. nul, KNF, no functional change.Keith Bostic2014-12-221-6/+5
* Add __wt_getenv to workaround caching in MSVC CRT's getenv implementation.Mark Benvenuto2014-12-191-0/+26