aboutsummaryrefslogtreecommitdiff
path: root/sys/sparc64/include/cpufunc.h
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2002-04-01 23:51:23 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2002-04-01 23:51:23 +0000
commit182da8209d4cda12e2d510e06f9e4b516171f9b6 (patch)
treeec7d3de3f9fac7137b9779c10d8281315efa3647 /sys/sparc64/include/cpufunc.h
parentad68ab89e2c36e378d03ab777464dcc8a24a43a0 (diff)
downloadsrc-182da8209d4cda12e2d510e06f9e4b516171f9b6.tar.gz
src-182da8209d4cda12e2d510e06f9e4b516171f9b6.zip
Stage-2 commit of the critical*() code. This re-inlines cpu_critical_enter()
and cpu_critical_exit() and moves associated critical prototypes into their own header file, <arch>/<arch>/critical.h, which is only included by the three MI source files that need it. Backout and re-apply improperly comitted syntactical cleanups made to files that were still under active development. Backout improperly comitted program structure changes that moved localized declarations to the top of two procedures. Partially re-apply one of the program structure changes to move 'mask' into an intermediate block rather then in three separate sub-blocks to make the code more readable. Re-integrate bug fixes that Jake made to the sparc64 code. Note: In general, developers should not gratuitously move declarations out of sub-blocks. They are where they are for reasons of structure, grouping, readability, compiler-localizability, and to avoid developer-introduced bugs similar to several found in recent years in the VFS and VM code. Reviewed by: jake
Notes
Notes: svn path=/head/; revision=93607
Diffstat (limited to 'sys/sparc64/include/cpufunc.h')
-rw-r--r--sys/sparc64/include/cpufunc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/sparc64/include/cpufunc.h b/sys/sparc64/include/cpufunc.h
index 4a3dd7ae6e3d..86e7ae526089 100644
--- a/sys/sparc64/include/cpufunc.h
+++ b/sys/sparc64/include/cpufunc.h
@@ -224,9 +224,4 @@ ffs(int mask)
#undef LDNC_GEN
#undef STNC_GEN
-void cpu_critical_enter(void);
-void cpu_critical_exit(void);
-void cpu_critical_fork_exit(void);
-void cpu_thread_link(struct thread *td);
-
#endif /* !_MACHINE_CPUFUNC_H_ */