aboutsummaryrefslogtreecommitdiff
path: root/sys/powerpc/include/critical.h
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2003-08-04 20:32:45 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2003-08-04 20:32:45 +0000
commit3bdbd658f1d25f99bac2d4033c1556afc46403b0 (patch)
treefd4fd8a4bc6d0874da5819255d7a16d649642bbc /sys/powerpc/include/critical.h
parent139b7550d98ddfe74a9e69e9d7bc0645f4acafea (diff)
downloadsrc-3bdbd658f1d25f99bac2d4033c1556afc46403b0.tar.gz
src-3bdbd658f1d25f99bac2d4033c1556afc46403b0.zip
- Since td_critnest is now initialized in MI code, it doesn't have to be
set in cpu_critical_fork_exit() anymore. - As far as I can tell, cpu_thread_link() has never been used, not even when it was originally added, so remove it.
Notes
Notes: svn path=/head/; revision=118443
Diffstat (limited to 'sys/powerpc/include/critical.h')
-rw-r--r--sys/powerpc/include/critical.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/powerpc/include/critical.h b/sys/powerpc/include/critical.h
index ce85c67a6d1b..b1bb077d9927 100644
--- a/sys/powerpc/include/critical.h
+++ b/sys/powerpc/include/critical.h
@@ -8,7 +8,6 @@
* cpu_critical_enter() - inlined
* cpu_critical_exit() - inlined
* cpu_critical_fork_exit() - prototyped
- * cpu_thread_link() - prototyped
* related support functions residing
* in <arch>/<arch>/critical.c - prototyped
*
@@ -24,7 +23,6 @@ __BEGIN_DECLS
* Prototypes - see <arch>/<arch>/critical.c
*/
void cpu_critical_fork_exit(void);
-void cpu_thread_link(struct thread *td);
#ifdef __GNUC__