Files
palemoon27/ipc/glue/SharedMemoryBasic.h
T
roytam1 9e300313d1 import changes from `dev' branch of rmottola/Arctic-Fox:
- missing bit of Bug 889158 - Fix arrow function lexical arguments binding (6dd07824a)
- missing parts of Bug 1135708 - Implement es7 exponentiation operator. (87d1b2a09)
- Bug 1183400 - Add a by-kind switch to perform constant-folding and eventually eliminate by-arity handling. r=efaust (ce6768404)
- Bug 1171909 - Check for alloc failure initializing AssemblerBufferWithConstantPools and update error handling ExceptionHandlerBailout r=jandem (fb86a97ec)
- Bug 1182428 - Consider TypeSet stuff to be GCPointers, since they can contain them, r=jonco (2a7841983)
- Bug 1184199 - Use a Map instead of a plain object to avoid the "constructor" property, r=jonco" (3af559983)
- Bug 1184199 - Add an explanation only if there is something to explain, r=jonco (882178fcf)
- Bug 1182428 - Improve naming, r=jonco (24bcf0679)
- Bug 1182428 - Recognize more rooted type names, r=jonco (75e9d692e)
- Bug 963738 - Assume(ptr) is not a hazard; Assume(*ptr) is, r=bhackett (e704d13e6)
- No bug. Add a --function argument for analyzing a single function by name. (d9e8fc4c0)
- Bug 1172682 - Comment and refactor analysis code, r=terrence The one change this patch makes in functionality is that it properly computes minimumUse in more cases, in anticipation of it being used for hazards (in addition to its current use for unnecessary roots). (a481f942a)
- Bug 1182428 - Accept more edge types in edgeCanGC, r=jonco (98413c47f)
- Bug 1170200 - Part 1: Change the API for nsIPermissionManager::Remove() to accept a URI instead of a string; r=ehsan (bd5ef47ed)
- Add two missing includes to SharedMemoryBasic_mach.cpp, no bug (dbdeeaca1)
- bug 1175898 - crash in mozilla::CrossProcessMutex::ShareToProcess(int) r=billm (93cab5830)
- bug 1204985 - make SharedMemoryBasic_mach build on iOS. r=billm (0f7b668c3)
- bug 1204985 horrible clobber-avoidance bustage fix r=YOLO CLOSED TREE (d46b9b946)
- Bug 1205164 - Detect message races in Mach Shmem implementation. r=blassey (2b88cc22b)
- Bug 1221540: OS X IPC timeout retry with a longer interval. r=milan (66d2006fe)
2021-09-20 09:22:07 +08:00

20 lines
651 B
C

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: sw=2 ts=8 et :
*/
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_ipc_SharedMemoryBasic_h
#define mozilla_ipc_SharedMemoryBasic_h
#ifdef ANDROID
# include "mozilla/ipc/SharedMemoryBasic_android.h"
#elif defined(XP_DARWIN)
# include "mozilla/ipc/SharedMemoryBasic_mach.h"
#else
# include "mozilla/ipc/SharedMemoryBasic_chromium.h"
#endif
#endif // ifndef mozilla_ipc_SharedMemoryBasic_h