Skip to content
Snippets Groups Projects
Select Git revision
  • d1be5c99a0341249bf6f74eb1cbc3d5fc4ef2be7
  • vme-testing default
  • ci-test
  • master
  • remoteproc
  • am625-sk-ov5640
  • pcal6534-upstreaming
  • lps22df-upstreaming
  • msc-upstreaming
  • imx8mp
  • iio/noa1305
  • vme-next
  • vme-next-4.14-rc4
  • v4.14-rc4
  • v4.14-rc3
  • v4.14-rc2
  • v4.14-rc1
  • v4.13
  • vme-next-4.13-rc7
  • v4.13-rc7
  • v4.13-rc6
  • v4.13-rc5
  • v4.13-rc4
  • v4.13-rc3
  • v4.13-rc2
  • v4.13-rc1
  • v4.12
  • v4.12-rc7
  • v4.12-rc6
  • v4.12-rc5
  • v4.12-rc4
  • v4.12-rc3
32 results

process.c

Blame
  • process.c 10.13 KiB
    /*
     * Based on arch/arm/kernel/process.c
     *
     * Original Copyright (C) 1995  Linus Torvalds
     * Copyright (C) 1996-2000 Russell King - Converted to ARM.
     * Copyright (C) 2012 ARM Ltd.
     *
     * This program is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License version 2 as
     * published by the Free Software Foundation.
     *
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     */
    
    #include <stdarg.h>
    
    #include <linux/compat.h>
    #include <linux/efi.h>
    #include <linux/export.h>
    #include <linux/sched.h>
    #include <linux/sched/debug.h>
    #include <linux/sched/task.h>
    #include <linux/sched/task_stack.h>
    #include <linux/kernel.h>
    #include <linux/mm.h>
    #include <linux/stddef.h>
    #include <linux/unistd.h>
    #include <linux/user.h>
    #include <linux/delay.h>
    #include <linux/reboot.h>
    #include <linux/interrupt.h>
    #include <linux/kallsyms.h>
    #include <linux/init.h>
    #include <linux/cpu.h>
    #include <linux/elfcore.h>
    #include <linux/pm.h>
    #include <linux/tick.h>
    #include <linux/utsname.h>
    #include <linux/uaccess.h>
    #include <linux/random.h>
    #include <linux/hw_breakpoint.h>
    #include <linux/personality.h>
    #include <linux/notifier.h>
    #include <trace/events/power.h>
    #include <linux/percpu.h>
    
    #include <asm/alternative.h>
    #include <asm/compat.h>
    #include <asm/cacheflush.h>
    #include <asm/exec.h>
    #include <asm/fpsimd.h>
    #include <asm/mmu_context.h>
    #include <asm/processor.h>
    #include <asm/stacktrace.h>
    
    #ifdef CONFIG_CC_STACKPROTECTOR
    #include <linux/stackprotector.h>
    unsigned long __stack_chk_guard __read_mostly;
    EXPORT_SYMBOL(__stack_chk_guard);
    #endif
    
    /*
     * Function pointers to optional machine specific functions
     */