summaryrefslogtreecommitdiff
path: root/libc/private/KernelArgumentBlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/private/KernelArgumentBlock.h')
-rw-r--r--libc/private/KernelArgumentBlock.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/private/KernelArgumentBlock.h b/libc/private/KernelArgumentBlock.h
index 886dd32a0..c8ce8411f 100644
--- a/libc/private/KernelArgumentBlock.h
+++ b/libc/private/KernelArgumentBlock.h
@@ -23,9 +23,6 @@
#include "private/bionic_macros.h"
-struct abort_msg_t;
-struct libc_shared_globals;
-
// When the kernel starts the dynamic linker, it passes a pointer to a block
// of memory containing argc, the argv array, the environment variable array,
// and the array of ELF aux vectors. This class breaks that block up into its
@@ -65,10 +62,6 @@ class KernelArgumentBlock {
char** envp;
ElfW(auxv_t)* auxv;
- // Other data that we want to pass from the dynamic linker to libc.so.
- abort_msg_t** abort_message_ptr;
- libc_shared_globals* shared_globals;
-
private:
BIONIC_DISALLOW_COPY_AND_ASSIGN(KernelArgumentBlock);
};