diff options
author | obrien <obrien@FreeBSD.org> | 2001-08-16 09:29:35 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-08-16 09:29:35 +0000 |
commit | 358f773cec56d6c2efccc594d09099db6ac1665e (patch) | |
tree | fa94197a35ffa007a11c5f91059188205d6476e5 /sys/ia64 | |
parent | 6bf1068b6ed1b605de9e06f71dd10f0d8398e421 (diff) | |
download | FreeBSD-src-358f773cec56d6c2efccc594d09099db6ac1665e.zip FreeBSD-src-358f773cec56d6c2efccc594d09099db6ac1665e.tar.gz |
style(9) and make consistent across platforms
Diffstat (limited to 'sys/ia64')
-rw-r--r-- | sys/ia64/include/globaldata.h | 25 | ||||
-rw-r--r-- | sys/ia64/include/pcpu.h | 25 |
2 files changed, 26 insertions, 24 deletions
diff --git a/sys/ia64/include/globaldata.h b/sys/ia64/include/globaldata.h index 0ec1e19..308086c 100644 --- a/sys/ia64/include/globaldata.h +++ b/sys/ia64/include/globaldata.h @@ -1,5 +1,6 @@ /*- * Copyright (c) 1999 Luoqi Chen <luoqi@freebsd.org> + * Copyright (c) Peter Wemm <peter@netplex.com.au> * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -43,26 +44,26 @@ * point at the globaldata structure. */ struct globaldata { - struct proc *gd_curproc; /* current process */ - struct proc *gd_idleproc; /* idle process */ - struct proc *gd_fpcurproc; /* fp state owner */ - struct pcb *gd_curpcb; /* current pcb */ - struct timeval gd_switchtime; - int gd_switchticks; - u_int gd_cpuid; /* this cpu number */ - u_int gd_other_cpus; /* all other cpus */ + struct proc *gd_curproc; /* current process */ + struct proc *gd_idleproc; /* idle process */ + struct proc *gd_fpcurproc; /* fp state owner */ + struct pcb *gd_curpcb; /* current pcb */ + struct timeval gd_switchtime; + int gd_switchticks; + u_int gd_cpuid; /* this cpu number */ + u_int gd_other_cpus; /* all other cpus */ u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */ u_int64_t gd_pending_ipis; /* pending IPI events */ - struct pmap *gd_current_pmap; /* which pmap is active */ + struct pmap *gd_current_pmap; /* which pmap is active */ u_int32_t gd_next_asn; /* next ASN to allocate */ u_int32_t gd_current_asngen; /* ASN rollover check */ SLIST_ENTRY(globaldata) gd_allcpu; - struct lock_list_entry *gd_spinlocks; + struct lock_list_entry *gd_spinlocks; #ifdef KTR_PERCPU volatile int gd_ktr_idx; /* Index into trace table */ - char *gd_ktr_buf; - char gd_ktr_buf_data[0]; + char *gd_ktr_buf; + char gd_ktr_buf_data[0]; #endif }; diff --git a/sys/ia64/include/pcpu.h b/sys/ia64/include/pcpu.h index 0ec1e19..308086c 100644 --- a/sys/ia64/include/pcpu.h +++ b/sys/ia64/include/pcpu.h @@ -1,5 +1,6 @@ /*- * Copyright (c) 1999 Luoqi Chen <luoqi@freebsd.org> + * Copyright (c) Peter Wemm <peter@netplex.com.au> * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -43,26 +44,26 @@ * point at the globaldata structure. */ struct globaldata { - struct proc *gd_curproc; /* current process */ - struct proc *gd_idleproc; /* idle process */ - struct proc *gd_fpcurproc; /* fp state owner */ - struct pcb *gd_curpcb; /* current pcb */ - struct timeval gd_switchtime; - int gd_switchticks; - u_int gd_cpuid; /* this cpu number */ - u_int gd_other_cpus; /* all other cpus */ + struct proc *gd_curproc; /* current process */ + struct proc *gd_idleproc; /* idle process */ + struct proc *gd_fpcurproc; /* fp state owner */ + struct pcb *gd_curpcb; /* current pcb */ + struct timeval gd_switchtime; + int gd_switchticks; + u_int gd_cpuid; /* this cpu number */ + u_int gd_other_cpus; /* all other cpus */ u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */ u_int64_t gd_pending_ipis; /* pending IPI events */ - struct pmap *gd_current_pmap; /* which pmap is active */ + struct pmap *gd_current_pmap; /* which pmap is active */ u_int32_t gd_next_asn; /* next ASN to allocate */ u_int32_t gd_current_asngen; /* ASN rollover check */ SLIST_ENTRY(globaldata) gd_allcpu; - struct lock_list_entry *gd_spinlocks; + struct lock_list_entry *gd_spinlocks; #ifdef KTR_PERCPU volatile int gd_ktr_idx; /* Index into trace table */ - char *gd_ktr_buf; - char gd_ktr_buf_data[0]; + char *gd_ktr_buf; + char gd_ktr_buf_data[0]; #endif }; |