Skip to content
Snippets Groups Projects
Select Git revision
  • 5f2981f748b89af8cf0f5f3dd42d4dbc7842f845
  • master default protected
  • 3.0
  • develop
  • revert-2069-tripleVersion
  • 3.1
  • rest-protocol
  • feat/remoting_rocketmq
  • dapr-support
  • 1.5
  • 1.4
  • 1.3
  • 1.2
  • 1.1
  • v3.0.3-rc2
  • v3.0.3-rc1
  • v3.0.2
  • v1.5.8
  • v1.5.9-rc1
  • v3.0.1
  • v1.5.8-rc1
  • v3.0.0
  • v3.0.0-rc4-1
  • v3.0.0-rc4
  • v3.0.0-rc3
  • v1.5.7
  • v1.5.7-rc2
  • v3.0.0-rc2
  • remove
  • v1.5.7-rc1
  • v3.0.0-rc1
  • v1.5.7-rc1-tmp
  • 1.5.6
  • v1.5.6
34 results

client.go

Blame
  • core.c 188.72 KiB
    /*
     *  kernel/sched/core.c
     *
     *  Kernel scheduler and related syscalls
     *
     *  Copyright (C) 1991-2002  Linus Torvalds
     *
     *  1996-12-23  Modified by Dave Grothe to fix bugs in semaphores and
     *		make semaphores SMP safe
     *  1998-11-19	Implemented schedule_timeout() and related stuff
     *		by Andrea Arcangeli
     *  2002-01-04	New ultra-scalable O(1) scheduler by Ingo Molnar:
     *		hybrid priority-list and round-robin design with
     *		an array-switch method of distributing timeslices
     *		and per-CPU runqueues.  Cleanups and useful suggestions
     *		by Davide Libenzi, preemptible kernel bits by Robert Love.
     *  2003-09-03	Interactivity tuning by Con Kolivas.
     *  2004-04-02	Scheduler domains code by Nick Piggin
     *  2007-04-15  Work begun on replacing all interactivity tuning with a
     *              fair scheduling design by Con Kolivas.
     *  2007-05-05  Load balancing (smp-nice) and other improvements
     *              by Peter Williams
     *  2007-05-06  Interactivity improvements to CFS by Mike Galbraith
     *  2007-07-01  Group scheduling enhancements by Srivatsa Vaddagiri
     *  2007-11-29  RT balancing improvements by Steven Rostedt, Gregory Haskins,
     *              Thomas Gleixner, Mike Kravetz
     */
    
    #include <linux/mm.h>
    #include <linux/module.h>
    #include <linux/nmi.h>
    #include <linux/init.h>
    #include <linux/uaccess.h>
    #include <linux/highmem.h>
    #include <asm/mmu_context.h>
    #include <linux/interrupt.h>
    #include <linux/capability.h>
    #include <linux/completion.h>
    #include <linux/kernel_stat.h>
    #include <linux/debug_locks.h>
    #include <linux/perf_event.h>
    #include <linux/security.h>
    #include <linux/notifier.h>
    #include <linux/profile.h>
    #include <linux/freezer.h>
    #include <linux/vmalloc.h>
    #include <linux/blkdev.h>
    #include <linux/delay.h>
    #include <linux/pid_namespace.h>
    #include <linux/smp.h>
    #include <linux/threads.h>
    #include <linux/timer.h>
    #include <linux/rcupdate.h>
    #include <linux/cpu.h>
    #include <linux/cpuset.h>
    #include <linux/percpu.h>
    #include <linux/proc_fs.h>
    #include <linux/seq_file.h>
    #include <linux/sysctl.h>
    #include <linux/syscalls.h>
    #include <linux/times.h>
    #include <linux/tsacct_kern.h>
    #include <linux/kprobes.h>
    #include <linux/delayacct.h>
    #include <linux/unistd.h>
    #include <linux/pagemap.h>
    #include <linux/hrtimer.h>
    #include <linux/tick.h>
    #include <linux/debugfs.h>
    #include <linux/ctype.h>