|
@@ -547,25 +547,8 @@ struct signal_struct {
|
|
|
|
|
|
struct list_head cpu_timers[3];
|
|
|
|
|
|
- /* job control IDs */
|
|
|
-
|
|
|
- /*
|
|
|
- * pgrp and session fields are deprecated.
|
|
|
- * use the task_session_Xnr and task_pgrp_Xnr routines below
|
|
|
- */
|
|
|
-
|
|
|
- union {
|
|
|
- pid_t pgrp __deprecated;
|
|
|
- pid_t __pgrp;
|
|
|
- };
|
|
|
-
|
|
|
struct pid *tty_old_pgrp;
|
|
|
|
|
|
- union {
|
|
|
- pid_t session __deprecated;
|
|
|
- pid_t __session;
|
|
|
- };
|
|
|
-
|
|
|
/* boolean value for session group leader */
|
|
|
int leader;
|
|
|
|
|
@@ -1469,16 +1452,6 @@ static inline int rt_task(struct task_struct *p)
|
|
|
return rt_prio(p->prio);
|
|
|
}
|
|
|
|
|
|
-static inline void set_task_session(struct task_struct *tsk, pid_t session)
|
|
|
-{
|
|
|
- tsk->signal->__session = session;
|
|
|
-}
|
|
|
-
|
|
|
-static inline void set_task_pgrp(struct task_struct *tsk, pid_t pgrp)
|
|
|
-{
|
|
|
- tsk->signal->__pgrp = pgrp;
|
|
|
-}
|
|
|
-
|
|
|
static inline struct pid *task_pid(struct task_struct *task)
|
|
|
{
|
|
|
return task->pids[PIDTYPE_PID].pid;
|
|
@@ -1552,11 +1525,6 @@ static inline pid_t task_tgid_vnr(struct task_struct *tsk)
|
|
|
}
|
|
|
|
|
|
|
|
|
-static inline pid_t task_pgrp_nr(struct task_struct *tsk)
|
|
|
-{
|
|
|
- return tsk->signal->__pgrp;
|
|
|
-}
|
|
|
-
|
|
|
static inline pid_t task_pgrp_nr_ns(struct task_struct *tsk,
|
|
|
struct pid_namespace *ns)
|
|
|
{
|
|
@@ -1569,11 +1537,6 @@ static inline pid_t task_pgrp_vnr(struct task_struct *tsk)
|
|
|
}
|
|
|
|
|
|
|
|
|
-static inline pid_t task_session_nr(struct task_struct *tsk)
|
|
|
-{
|
|
|
- return tsk->signal->__session;
|
|
|
-}
|
|
|
-
|
|
|
static inline pid_t task_session_nr_ns(struct task_struct *tsk,
|
|
|
struct pid_namespace *ns)
|
|
|
{
|
|
@@ -1585,6 +1548,12 @@ static inline pid_t task_session_vnr(struct task_struct *tsk)
|
|
|
return __task_pid_nr_ns(tsk, PIDTYPE_SID, NULL);
|
|
|
}
|
|
|
|
|
|
+/* obsolete, do not use */
|
|
|
+static inline pid_t task_pgrp_nr(struct task_struct *tsk)
|
|
|
+{
|
|
|
+ return task_pgrp_nr_ns(tsk, &init_pid_ns);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* pid_alive - check that a task structure is not stale
|
|
|
* @p: Task structure to be checked.
|