~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/sched/jobctl.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _LINUX_SCHED_JOBCTL_H
  3 #define _LINUX_SCHED_JOBCTL_H
  4 
  5 #include <linux/types.h>
  6 
  7 struct task_struct;
  8 
  9 /*
 10  * task->jobctl flags
 11  */
 12 #define JOBCTL_STOP_SIGMASK     0xffff  /* signr of the last group stop */
 13 
 14 #define JOBCTL_STOP_DEQUEUED_BIT 16     /* stop signal dequeued */
 15 #define JOBCTL_STOP_PENDING_BIT 17      /* task should stop for group stop */
 16 #define JOBCTL_STOP_CONSUME_BIT 18      /* consume group stop count */
 17 #define JOBCTL_TRAP_STOP_BIT    19      /* trap for STOP */
 18 #define JOBCTL_TRAP_NOTIFY_BIT  20      /* trap for NOTIFY */
 19 #define JOBCTL_TRAPPING_BIT     21      /* switching to TRACED */
 20 #define JOBCTL_LISTENING_BIT    22      /* ptracer is listening for events */
 21 #define JOBCTL_TRAP_FREEZE_BIT  23      /* trap for cgroup freezer */
 22 #define JOBCTL_PTRACE_FROZEN_BIT        24      /* frozen for ptrace */
 23 
 24 #define JOBCTL_STOPPED_BIT      26      /* do_signal_stop() */
 25 #define JOBCTL_TRACED_BIT       27      /* ptrace_stop() */
 26 
 27 #define JOBCTL_STOP_DEQUEUED    (1UL << JOBCTL_STOP_DEQUEUED_BIT)
 28 #define JOBCTL_STOP_PENDING     (1UL << JOBCTL_STOP_PENDING_BIT)
 29 #define JOBCTL_STOP_CONSUME     (1UL << JOBCTL_STOP_CONSUME_BIT)
 30 #define JOBCTL_TRAP_STOP        (1UL << JOBCTL_TRAP_STOP_BIT)
 31 #define JOBCTL_TRAP_NOTIFY      (1UL << JOBCTL_TRAP_NOTIFY_BIT)
 32 #define JOBCTL_TRAPPING         (1UL << JOBCTL_TRAPPING_BIT)
 33 #define JOBCTL_LISTENING        (1UL << JOBCTL_LISTENING_BIT)
 34 #define JOBCTL_TRAP_FREEZE      (1UL << JOBCTL_TRAP_FREEZE_BIT)
 35 #define JOBCTL_PTRACE_FROZEN    (1UL << JOBCTL_PTRACE_FROZEN_BIT)
 36 
 37 #define JOBCTL_STOPPED          (1UL << JOBCTL_STOPPED_BIT)
 38 #define JOBCTL_TRACED           (1UL << JOBCTL_TRACED_BIT)
 39 
 40 #define JOBCTL_TRAP_MASK        (JOBCTL_TRAP_STOP | JOBCTL_TRAP_NOTIFY)
 41 #define JOBCTL_PENDING_MASK     (JOBCTL_STOP_PENDING | JOBCTL_TRAP_MASK)
 42 
 43 extern bool task_set_jobctl_pending(struct task_struct *task, unsigned long mask);
 44 extern void task_clear_jobctl_trapping(struct task_struct *task);
 45 extern void task_clear_jobctl_pending(struct task_struct *task, unsigned long mask);
 46 
 47 #endif /* _LINUX_SCHED_JOBCTL_H */
 48 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php