mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
32 lines
640 B
C
32 lines
640 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _M68K_CURRENT_H
|
|
#define _M68K_CURRENT_H
|
|
|
|
#ifdef CONFIG_MMU
|
|
|
|
register struct task_struct *current __asm__("%a2");
|
|
|
|
#else
|
|
|
|
/*
|
|
* Rather than dedicate a register (as the m68k source does), we
|
|
* just keep a global, we should probably just change it all to be
|
|
* current and lose _current_task.
|
|
*/
|
|
#include <linux/thread_info.h>
|
|
|
|
struct task_struct;
|
|
|
|
static inline struct task_struct *get_current(void)
|
|
{
|
|
return(current_thread_info()->task);
|
|
}
|
|
|
|
#define current get_current()
|
|
|
|
#endif /* CONFIG_MMU */
|
|
|
|
register unsigned long current_stack_pointer __asm__("sp");
|
|
|
|
#endif /* !(_M68K_CURRENT_H) */
|