Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Common heap and stack allocations
4 */
5
6#include <linux/linkage.h>
7
8 .data
9SYM_DATA(HEAP, .long rm_heap)
10SYM_DATA(heap_end, .long rm_stack)
11
12 .bss
13 .balign 16
14SYM_DATA(rm_heap, .space 2048)
15
16SYM_DATA_START(rm_stack)
17 .space 2048
18SYM_DATA_END_LABEL(rm_stack, SYM_L_GLOBAL, rm_stack_end)