summaryrefslogtreecommitdiffstats
path: root/base/shared_memory_posix.cc
Commit message (Expand)AuthorAgeFilesLines
* Order function definitions in base/ according to the header.erg@google.com2011-01-111-63/+62
* Move base/thread.h to base/threading, fix up callers to use the new location.brettw@chromium.org2011-01-011-1/+1
* Move platform_thread to base/threading and put in the base namespace. I left abrettw@chromium.org2010-12-311-2/+2
* While there are all sorts of reasons for "/dev/shm" to be inaccessible,markus@chromium.org2010-11-011-1/+1
* Fix up SharedMemory implementation so that it is more equivalent on Windows v...dmaclach@chromium.org2010-10-271-104/+100
* Thread IO safety: annotate file_util, and block IO thread from doing IOevan@chromium.org2010-10-231-0/+6
* Revert 63600 - Thread IO safety: annotate file_util, and block IO thread from...isherman@chromium.org2010-10-231-6/+0
* Thread IO safety: annotate file_util, and block IO thread from doing IOevan@chromium.org2010-10-231-0/+6
* Revert "Thread IO safety: annotate file_util, and block IO thread from doing IO"evan@chromium.org2010-10-221-6/+0
* Thread IO safety: annotate file_util, and block IO thread from doing IOevan@chromium.org2010-10-221-0/+6
* shared_memory: improve error messages on failure.evan@chromium.org2010-09-291-4/+11
* shared_memory: remove wstrings, fix callers.evan@chromium.org2010-09-291-12/+11
* Header cleanup in base.brettw@chromium.org2010-08-171-3/+3
* Valid FDs are >= 0 (> -1), not >= -1.mark@chromium.org2010-05-051-1/+1
* linux: make shm opening failure fatalevan@chromium.org2010-03-291-3/+5
* Make SharedMemory use uint32 instead of size_t. This removes the remaining s...jam@chromium.org2010-02-161-4/+4
* linux: provide a hint to people with misconfigured shmevan@chromium.org2010-01-081-1/+6
* Don't do work in the SharedIOBuffer constructor; use an Init method instead. ...hawk@chromium.org2009-11-201-4/+2
* Add a CHECK() around the SharedMemory ftruncate() call to finger it as a cras...hawk@chromium.org2009-10-291-2/+4
* Eliminate all uses of strerror() in code that uses src/base. strerror() is in...tschmelcher@chromium.org2009-10-131-3/+3
* posix: clean up shared memory codeevan@chromium.org2009-09-161-16/+18
* Use ftruncate() instead of fwrite() to extend files.pinkerton@chromium.org2009-08-261-20/+4
* Handle file descriptor exhaustions a little more gracefully. This prevents th...stuartmorgan@chromium.org2009-06-121-1/+8
* Fix a memory leak in ResourceDispatcherhclam@chromium.org2009-05-181-0/+6
* Remove unused variable from POSIX SharedMemory implementation.thestig@chromium.org2009-04-041-7/+4
* Port visitedlink tests to Linux. Also make them pass on Linux, whichphajdan.jr@chromium.org2009-03-161-0/+5
* Bitmap transportagl@chromium.org2009-02-201-0/+16
* POSIX: Transfer network data using shared memoryagl@chromium.org2009-02-111-6/+20
* * Fix error checking for mmap() for POSIX shared memory.jeremy@chromium.org2009-02-111-1/+3
* Transition POSIX shmem to use lockf(), not semaphores. Eliminatesjrg@chromium.org2009-02-051-31/+23
* Properly honor base::SharedMemory semantics for name="" to meanjrg@chromium.org2009-02-041-17/+129
* Unit test addition, cleanup for render_process/thread.jrg@chromium.org2009-01-281-5/+1
* We need to loop on waiting as there are plenty of reasons why it might not take.avi@google.com2008-12-111-2/+6
* addressing commentsagl@chromium.org2008-11-181-9/+8
* Check ftruncate resultagl@chromium.org2008-11-181-13/+17
* Add Terminate() to the Process object, have RenderProcessHost use this to avo...brettw@google.com2008-11-141-0/+3
* Removed magic number for owner rights, avoid to call close(-1).brettw@google.com2008-10-291-2/+2
* ensure that the shared memory has actually been created before trying to re-u...pinkerton@google.com2008-09-231-1/+1
* Use a more compact license header in source files.license.bot2008-08-241-28/+4
* Revving the shared memory to the comments on the list.avi@google.com2008-08-131-27/+29
* Make this file compile on linux. We need fcntl.h for O_RDONLY, etc.tc@google.com2008-08-121-0/+1
* The Posix shared memory implementation.avi@google.com2008-08-121-0/+189