aboutsummaryrefslogtreecommitdiffstats
path: root/system_cmds/gcore.tproj
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-23 11:51:14 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-23 11:51:14 -0400
commitaf3b128436e874c2c42b6f154405af8ecf27168c (patch)
tree0009a24f50f15d38577f04fd65af8d258da4d6f2 /system_cmds/gcore.tproj
parent6049e2ca2a32bf3cd895ac1279495d4bf61c638d (diff)
downloadapple_cmds-af3b128436e874c2c42b6f154405af8ecf27168c.tar.gz
apple_cmds-af3b128436e874c2c42b6f154405af8ecf27168c.tar.zst
apple_cmds-af3b128436e874c2c42b6f154405af8ecf27168c.zip
system_cmds: Fix compilation for lower targets, downgrade lsmp
Diffstat (limited to 'system_cmds/gcore.tproj')
-rw-r--r--system_cmds/gcore.tproj/convert.c1
-rw-r--r--system_cmds/gcore.tproj/corefile.c1
-rw-r--r--system_cmds/gcore.tproj/dyld.c1
-rw-r--r--system_cmds/gcore.tproj/main.c1
-rw-r--r--system_cmds/gcore.tproj/sparse.c1
-rw-r--r--system_cmds/gcore.tproj/threads.c1
-rw-r--r--system_cmds/gcore.tproj/utils.c1
-rw-r--r--system_cmds/gcore.tproj/vanilla.c1
-rw-r--r--system_cmds/gcore.tproj/vm.c1
9 files changed, 9 insertions, 0 deletions
diff --git a/system_cmds/gcore.tproj/convert.c b/system_cmds/gcore.tproj/convert.c
index a3b41f3..5e38244 100644
--- a/system_cmds/gcore.tproj/convert.c
+++ b/system_cmds/gcore.tproj/convert.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "convert.h"
#include "corefile.h"
#include "vanilla.h"
diff --git a/system_cmds/gcore.tproj/corefile.c b/system_cmds/gcore.tproj/corefile.c
index b1e4421..8e61ca6 100644
--- a/system_cmds/gcore.tproj/corefile.c
+++ b/system_cmds/gcore.tproj/corefile.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016-2018 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "corefile.h"
#include "sparse.h"
diff --git a/system_cmds/gcore.tproj/dyld.c b/system_cmds/gcore.tproj/dyld.c
index 92aeac1..5ef9899 100644
--- a/system_cmds/gcore.tproj/dyld.c
+++ b/system_cmds/gcore.tproj/dyld.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "dyld.h"
#include "utils.h"
diff --git a/system_cmds/gcore.tproj/main.c b/system_cmds/gcore.tproj/main.c
index abefa14..b20e721 100644
--- a/system_cmds/gcore.tproj/main.c
+++ b/system_cmds/gcore.tproj/main.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "utils.h"
#include "corefile.h"
diff --git a/system_cmds/gcore.tproj/sparse.c b/system_cmds/gcore.tproj/sparse.c
index c62b9f3..616eedf 100644
--- a/system_cmds/gcore.tproj/sparse.c
+++ b/system_cmds/gcore.tproj/sparse.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "vm.h"
#include "region.h"
diff --git a/system_cmds/gcore.tproj/threads.c b/system_cmds/gcore.tproj/threads.c
index b1b3d6f..f47cbfd 100644
--- a/system_cmds/gcore.tproj/threads.c
+++ b/system_cmds/gcore.tproj/threads.c
@@ -2,6 +2,7 @@
* Copyright (c) 2015 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "utils.h"
#include "threads.h"
diff --git a/system_cmds/gcore.tproj/utils.c b/system_cmds/gcore.tproj/utils.c
index f0edcf8..8706b6e 100644
--- a/system_cmds/gcore.tproj/utils.c
+++ b/system_cmds/gcore.tproj/utils.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "utils.h"
#include "region.h"
diff --git a/system_cmds/gcore.tproj/vanilla.c b/system_cmds/gcore.tproj/vanilla.c
index 2253bff..46b91b5 100644
--- a/system_cmds/gcore.tproj/vanilla.c
+++ b/system_cmds/gcore.tproj/vanilla.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "vm.h"
#include "region.h"
diff --git a/system_cmds/gcore.tproj/vm.c b/system_cmds/gcore.tproj/vm.c
index 3c4e7e6..0504f51 100644
--- a/system_cmds/gcore.tproj/vm.c
+++ b/system_cmds/gcore.tproj/vm.c
@@ -2,6 +2,7 @@
* Copyright (c) 2016 Apple Inc. All rights reserved.
*/
+typedef char *kobject_description_t[512];
#include "options.h"
#include "vm.h"
#include "utils.h"