1. 10b6412 Move PathExists to base namespace. by brettw@chromium.org · 11 years ago
  2. e77bef7 Posix: fix named SHM mappings permissions. by jln@chromium.org · 11 years ago
  3. e9f9948 Move file_util::Delete to the base namespace by brettw@chromium.org · 11 years ago
  4. 17f6062 Use a direct include of utf_string_conversions.h in android_webview/, apps/, ash/, base/. by avi@chromium.org · 11 years ago
  5. 2afd406 Limit the number of pending requests to the max number of file descriptors. by simonjam@chromium.org · 11 years ago
  6. 4329aa7 Move shared_memory into base/memory subdirectory. by brettw@chromium.org · 11 years ago[Renamed (99%) from base/shared_memory_posix.cc]
  7. d128809 Fix Android-specific shmem size code. by aelias@chromium.org · 11 years ago
  8. c41be7b Make SharedMemory track the size that was actually mapped by jschuh@chromium.org · 11 years ago
  9. ea7895a Remove/simplify the POSIX SharedMemory::Create() a bit. by viettrungluu@chromium.org · 11 years ago
  10. 222e34c Added SharedMemory::MapFrom. by vitalybuka@chromium.org · 12 years ago
  11. 447ba04 The correct type for the size of a chunk of memory is size_t. by cevans@chromium.org · 12 years ago
  12. 93d40b0 Make ShareToProcess return false when dup() fails. This matches the behavior by darin@chromium.org · 12 years ago
  13. 9329193 Advertise a minimum alignment for SharedMemory::Map(). by dalecurtis@chromium.org · 12 years ago
  14. fd41cac mmap returns -1 on failure and in the posix implementation of SharedMemory, this was setting memory_ to -1. However the interface for SharedMemory specifies that memory_ should be NULL if it is unmapped. by raymes@chromium.org · 12 years ago
  15. 439b3d2 Improve SharedMemory::Lock on Posix and reenable StatsTableTest.MultipleThreads by vandebo@chromium.org · 12 years ago
  16. aaa6303 Change code in base (primarily unit tests) to use Sleep(TimeDelta). by tedvessenes@gmail.com · 13 years ago
  17. 569a423 Adaptively use temp dir instead of /dev/shm for executable shmem file on Linux by mcgrathr@chromium.org · 13 years ago
  18. 45910f7 Give base::SharedMemory::CreateAnonymous an executable flag by mcgrathr@chromium.org · 13 years ago
  19. 5faed3c Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by brettw@chromium.org · 13 years ago
  20. 8167d20 Revert 107042 - Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by brettw@chromium.org · 13 years ago
  21. 951e6ff Replace most LOG/CHECK statements with DLOG/DCHECK statements in base. by brettw@chromium.org · 13 years ago
  22. 01ef2f2 Upstream android debug and log related files by michaelbai@google.com · 13 years ago
  23. 6ee384d Coverity fixes CID=15870,13529 Check pointer before assign, resource leak. by gbillock@chromium.org · 13 years ago
  24. 2251c62 Upstream android file related code. by michaelbai@google.com · 13 years ago
  25. e486977 Update DCHECK() usage to utilize the more expressive debugging functions. by kushi.p@gmail.com · 13 years ago
  26. 13aa8aa Use the real Mac browser app's bundle identifier everywhere that a base by mark@chromium.org · 13 years ago
  27. ad50453 Fix problems in src/base: by phajdan.jr@chromium.org · 13 years ago
  28. d23fe1a Use DCHECK_GE() where possible in base/. Patch by Kushal Pisavadia (see http://codereview.chromium.org/6688056/ ), r=me. by pkasting@chromium.org · 13 years ago
  29. 73bfc43 More DCHECK() updates. A mixture of _EQ and _GE. by mhm@chromium.org · 13 years ago
  30. 36c0625 Dup command-buffer SHM handle before auto-closing. by piman@google.com · 13 years ago
  31. 37c078e Order function definitions in base/ according to the header. by erg@google.com · 14 years ago
  32. 5b5f5e0 Move base/thread.h to base/threading, fix up callers to use the new location. by brettw@chromium.org · 14 years ago
  33. 6139182 Move platform_thread to base/threading and put in the base namespace. I left a by brettw@chromium.org · 14 years ago
  34. dacd545 While there are all sorts of reasons for "/dev/shm" to be inaccessible, by markus@chromium.org · 14 years ago
  35. bb6b763 Fix up SharedMemory implementation so that it is more equivalent on Windows vs Posix and enforces exclusive creates. by dmaclach@chromium.org · 14 years ago
  36. 7c9cd8b Thread IO safety: annotate file_util, and block IO thread from doing IO by evan@chromium.org · 14 years ago
  37. 14fecd5 Revert 63600 - Thread IO safety: annotate file_util, and block IO thread from doing IO by isherman@chromium.org · 14 years ago
  38. 5c289b5 Thread IO safety: annotate file_util, and block IO thread from doing IO by evan@chromium.org · 14 years ago
  39. 5d72067 Revert "Thread IO safety: annotate file_util, and block IO thread from doing IO" by evan@chromium.org · 14 years ago
  40. 7b7870f Thread IO safety: annotate file_util, and block IO thread from doing IO by evan@chromium.org · 14 years ago
  41. 16cba87 shared_memory: improve error messages on failure. by evan@chromium.org · 14 years ago
  42. 5675699 shared_memory: remove wstrings, fix callers. by evan@chromium.org · 14 years ago
  43. 11f89b0 Header cleanup in base. by brettw@chromium.org · 14 years ago
  44. 7eb6a9e Valid FDs are >= 0 (> -1), not >= -1. by mark@chromium.org · 14 years ago
  45. 1091005 linux: make shm opening failure fatal by evan@chromium.org · 14 years ago
  46. e74ca94 Make SharedMemory use uint32 instead of size_t. This removes the remaining size_t's from the IPC code. by jam@chromium.org · 14 years ago
  47. b1ab7cd linux: provide a hint to people with misconfigured shm by evan@chromium.org · 15 years ago
  48. e31b0a7 Don't do work in the SharedIOBuffer constructor; use an Init method instead. This eliminates instances of allocated-but-invalid SharedIOBuffers. Also clean up some CHECKs and TODOs associated with the bug. by hawk@chromium.org · 15 years ago
  49. bb9dd07 Add a CHECK() around the SharedMemory ftruncate() call to finger it as a crash culprit. by hawk@chromium.org · 15 years ago
  50. 90a3f8a Eliminate all uses of strerror() in code that uses src/base. strerror() is inherently unsafe in multi-threaded apps because it stores the string in a global buffer. It should never be used. If you want to log an error, use PLOG and friends, or if that's too high-level then use safe_strerror(). by tschmelcher@chromium.org · 15 years ago
  51. bd3a0d6 posix: clean up shared memory code by evan@chromium.org · 15 years ago
  52. f8afd6f Use ftruncate() instead of fwrite() to extend files. by pinkerton@chromium.org · 15 years ago
  53. 8a8e966 Handle file descriptor exhaustions a little more gracefully. This prevents the browser itself from crashing in Intl2 page cycler tests on the Mac (although the renderer still dies, at least in debug), so that seems like a good idea whatever larger solution we find for the file descriptor issue. by stuartmorgan@chromium.org · 15 years ago
  54. 32300e2 Fix a memory leak in ResourceDispatcher by hclam@chromium.org · 15 years ago
  55. 1d9da64 Remove unused variable from POSIX SharedMemory implementation. by thestig@chromium.org · 15 years ago
  56. fa1476b Port visitedlink tests to Linux. Also make them pass on Linux, which by phajdan.jr@chromium.org · 15 years ago
  57. 31de02e Bitmap transport by agl@chromium.org · 15 years ago
  58. 42bbb99 POSIX: Transfer network data using shared memory by agl@chromium.org · 15 years ago
  59. af1ab2f * Fix error checking for mmap() for POSIX shared memory. by jeremy@chromium.org · 15 years ago
  60. 81e2260 Transition POSIX shmem to use lockf(), not semaphores. Eliminates by jrg@chromium.org · 15 years ago
  61. d505c3a Properly honor base::SharedMemory semantics for name="" to mean by jrg@chromium.org · 15 years ago
  62. 768768d Unit test addition, cleanup for render_process/thread. by jrg@chromium.org · 16 years ago
  63. 8e4b653 We need to loop on waiting as there are plenty of reasons why it might not take. by avi@google.com · 16 years ago
  64. 8c15834 addressing comments by agl@chromium.org · 16 years ago
  65. 69e0a49 Check ftruncate result by agl@chromium.org · 16 years ago
  66. c60d989 Add Terminate() to the Process object, have RenderProcessHost use this to avoid some more Windows specific code. by brettw@google.com · 16 years ago
  67. 4a6795c Removed magic number for owner rights, avoid to call close(-1). by brettw@google.com · 16 years ago
  68. 38e8681 ensure that the shared memory has actually been created before trying to re-use it when the |open_existing| flag is passed to Create(). by pinkerton@google.com · 16 years ago
  69. f003cfe Use a more compact license header in source files. by license.bot · 16 years ago
  70. 9e0cc15 Revving the shared memory to the comments on the list. by avi@google.com · 16 years ago
  71. 7e1fb1d Make this file compile on linux. We need fcntl.h for O_RDONLY, etc. by tc@google.com · 16 years ago
  72. 3a20898 The Posix shared memory implementation. by avi@google.com · 16 years ago