Remove member p_procscopegrp which is no longer used by libthr.

This commit is contained in:
David Xu 2006-10-27 05:45:44 +00:00
parent 6d815a7d8c
commit d21ac9b686
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163714
2 changed files with 0 additions and 11 deletions

View File

@ -278,11 +278,6 @@ ksegrp_unlink(struct ksegrp *kg)
p = kg->kg_proc;
TAILQ_REMOVE(&p->p_ksegrps, kg, kg_ksegrp);
p->p_numksegrps--;
/*
* Aggregate stats from the KSE
*/
if (p->p_procscopegrp == kg)
p->p_procscopegrp = NULL;
}
#endif
@ -1135,9 +1130,6 @@ thread_single_end(void)
p->p_flag &= ~(P_STOPPED_SINGLE | P_SINGLE_EXIT | P_SINGLE_BOUNDARY);
mtx_lock_spin(&sched_lock);
p->p_singlethread = NULL;
#ifdef KSE
p->p_procscopegrp = NULL;
#endif
/*
* If there are other threads they mey now run,
* unless of course there is a blanket 'stop order'

View File

@ -661,9 +661,6 @@ struct proc {
int p_suspcount; /* (c) Num threads in suspended mode. */
struct thread *p_xthread; /* (c) Trap thread */
int p_boundary_count;/* (c) Num threads at user boundary */
#ifdef KSE
struct ksegrp *p_procscopegrp;
#endif
int p_pendingcnt; /* how many signals are pending */
struct itimers *p_itimers; /* (c) POSIX interval timers. */
/* End area that is zeroed on creation. */