summaryrefslogtreecommitdiff
path: root/src/os_posix
Commit message (Expand)AuthorAgeFilesLines
* Update copyright notices to 2012.Keith Bostic2012-01-2218-54/+54
* Documentation: add notes on remote file systems, created file permissions,Keith Bostic2012-01-171-3/+6
* Add a "WT" prefix to SYSCALL_RETRY, change the open call to use the standardKeith Bostic2012-01-028-27/+9
* Review pass over errno handling -- probably still not correct, but it'sKeith Bostic2012-01-025-24/+43
* Add the WT_RET_MSG and WT_ERR_MSG macros that output a message and then return.Keith Bostic2012-01-0210-46/+33
* rephrase an error message.Keith Bostic2011-12-221-2/+2
* Move root addresses into the schema file and add support for theKeith Bostic2011-12-211-0/+35
* whitespace.Keith Bostic2011-12-211-1/+1
* Replace WT_OFF/WT_OFF_RECORD structures on row- and column-store internalKeith Bostic2011-12-171-0/+5
* automatically prepend verbose messages with their particular tag lineKeith Bostic2011-11-296-14/+14
* Only retry the file open for about 10 seconds, then give up: this would beKeith Bostic2011-11-281-4/+7
* Switch to a trylock for operations that need an exclusive handle lock: we don...Michael Cahill2011-11-071-15/+40
* Rename WT_MTX to WT_CONDVARMichael Cahill2011-11-041-51/+42
* Remove the workQ -- have application threads notify the read and eviction ser...Michael Cahill2011-11-033-18/+13
* Don't set the returned file handle in __wt_open until after all error checking.Michael Cahill2011-10-121-1/+2
* Fix a memory leak: don't use a scratch buffer for paths: we may not have a re...Michael Cahill2011-10-113-15/+12
* Don't call dlclose on FreeBSD: there are bad interactions with destructors.Michael Cahill2011-10-111-0/+9
* Fix a warning with -Wundef.Michael Cahill2011-10-061-1/+1
* The SYSCALL_RETRY() macro was just wrong (it counted down, not up, andKeith Bostic2011-10-016-12/+16
* Implement the wiredtiger_open "create" and "exclusive" configurationKeith Bostic2011-10-013-12/+67
* Support the home-directory argument to the wiredtiger_open function.Keith Bostic2011-09-294-13/+55
* Fix a comment.Keith Bostic2011-09-231-6/+7
* Add wrappers around POSIX read/write locks.Michael Cahill2011-09-121-10/+101
* Fix the build without --enable-diagnostic.Michael Cahill2011-09-121-0/+2
* Remove pthread_yield from the library: it is equivalent to sched_yield but le...Michael Cahill2011-09-081-4/+0
* Use size_t for size calculations, only store uint32_t in structs.Michael Cahill2011-08-181-6/+3
* Let thread-join fail and return an error.Keith Bostic2011-08-181-2/+2
* Don't need a cast, the calling type is appropriate.Keith Bostic2011-08-171-1/+1
* Move connection list manipulation out of __wt_dlopen/close.Michael Cahill2011-08-121-25/+4
* Add simple support for restarting system calls, open needs it, although theKeith Bostic2011-08-086-21/+46
* whitespace cleanupKeith Bostic2011-08-081-2/+1
* Depend on the ANSI C free semantics, where a NULL reference is simplyKeith Bostic2011-08-041-2/+1
* Add some more statistics to the reconciliation code as part of reviewing howKeith Bostic2011-08-043-7/+7
* Connect the old Btree statistics code to the statistics cursors: if youKeith Bostic2011-07-283-6/+0
* Add a table-level "drop" operation.Michael Cahill2011-07-151-0/+42
* Put parantheses around non-trivial conditions in ternary expressions.Michael Cahill2011-07-083-3/+4
* Add a schema layer, storing configuration information for tables, indices and...Michael Cahill2011-06-081-6/+15
* Make the abort message an error, not a message.Keith Bostic2011-06-291-1/+1
* Use a C99 variadic macro to simplify WT_VERBOSE.Michael Cahill2011-06-275-14/+9
* Change WT_VERBOSE to take a session as its first argument, that's the primaryKeith Bostic2011-06-265-7/+7
* Move btree configuration to ".conf" files, in preparation for storing it in t...Michael Cahill2011-06-141-1/+1
* When checking for an open file handle, use the list of file handles, not the ...Michael Cahill2011-06-031-5/+2
* Assert that a mutex is locked before unlocking it: this would have saved me a...Michael Cahill2011-06-031-0/+1
* Use inttypes.h for printf and scanf format strings for 64-bit quantities.Michael Cahill2011-05-301-12/+12
* Change all struct names to have the prefix "__wt_", and all corresponding typ...Michael Cahill2011-05-309-30/+34
* Implement extension loading, add API for compression extensions.Michael Cahill2011-05-231-0/+96
* Finish the split of btree open and btree create; get rid of the fileKeith Bostic2011-05-131-0/+20
* Treating the statistics fields as an array makes it too easy to walk off theKeith Bostic2011-04-085-11/+11
* Fix a bug where we incorrectly checked for a matching file name, thinkingKeith Bostic2011-03-291-2/+4
* Add comments before all functions.Michael Cahill2011-03-101-1/+5