summaryrefslogtreecommitdiff
path: root/ipc
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-05-01 07:15:13 +0000
committerMoonchild <moonchild@palemoon.org>2021-05-01 07:15:13 +0000
commit56da7e27477d0d4669980d2ce17f3b877ea0c36c (patch)
treedb79249dc345cddddc68d9e96da05c1973bfd8b8 /ipc
parent0dd3424f774954627d6f53df9fb47379d9b5c871 (diff)
downloaduxp-56da7e27477d0d4669980d2ce17f3b877ea0c36c.tar.gz
Issue #1751 -- Remove XP_IOS
Diffstat (limited to 'ipc')
-rw-r--r--ipc/glue/SharedMemoryBasic_mach.mm12
1 files changed, 0 insertions, 12 deletions
diff --git a/ipc/glue/SharedMemoryBasic_mach.mm b/ipc/glue/SharedMemoryBasic_mach.mm
index 88753ee2e8..3ee5a854d5 100644
--- a/ipc/glue/SharedMemoryBasic_mach.mm
+++ b/ipc/glue/SharedMemoryBasic_mach.mm
@@ -1,5 +1,4 @@
/* -*- 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
@@ -9,18 +8,7 @@
#include <mach/vm_map.h>
#include <mach/mach_port.h>
-#if defined(XP_IOS)
-#include <mach/vm_map.h>
-#define mach_vm_address_t vm_address_t
-#define mach_vm_allocate vm_allocate
-#define mach_vm_deallocate vm_deallocate
-#define mach_vm_map vm_map
-#define mach_vm_read vm_read
-#define mach_vm_region_recurse vm_region_recurse_64
-#define mach_vm_size_t vm_size_t
-#else
#include <mach/mach_vm.h>
-#endif
#include <pthread.h>
#include <unistd.h>
#include "SharedMemoryBasic.h"