mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
- Fix a missed idleproc -> idlethread conversion.
- Remove redundany fpucurproc (fpucurthread already existed)
This commit is contained in:
parent
9ed316e3a7
commit
63077d1623
2 changed files with 2 additions and 4 deletions
|
|
@ -45,9 +45,8 @@
|
|||
*/
|
||||
struct globaldata {
|
||||
struct thread *gd_curthread; /* current thread */
|
||||
struct proc *gd_idleproc; /* idle process */
|
||||
struct thread *gd_idlethread; /* idle thread */
|
||||
struct thread *gd_fpcurthread; /* fp state owner */
|
||||
struct proc *gd_fpcurproc; /* fp state owner */
|
||||
struct pcb *gd_curpcb; /* current pcb */
|
||||
struct timeval gd_switchtime;
|
||||
int gd_switchticks;
|
||||
|
|
|
|||
|
|
@ -45,9 +45,8 @@
|
|||
*/
|
||||
struct globaldata {
|
||||
struct thread *gd_curthread; /* current thread */
|
||||
struct proc *gd_idleproc; /* idle process */
|
||||
struct thread *gd_idlethread; /* idle thread */
|
||||
struct thread *gd_fpcurthread; /* fp state owner */
|
||||
struct proc *gd_fpcurproc; /* fp state owner */
|
||||
struct pcb *gd_curpcb; /* current pcb */
|
||||
struct timeval gd_switchtime;
|
||||
int gd_switchticks;
|
||||
|
|
|
|||
Loading…
Reference in a new issue