diff options
author | jake <jake@FreeBSD.org> | 2002-05-20 16:11:38 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2002-05-20 16:11:38 +0000 |
commit | 77c392a7a85ea00890d716f7d001c15a6525a389 (patch) | |
tree | fd41b97d654676c5be922991b0e117530d1ae483 | |
parent | 1166262e26d2d07ffdc7058ec1f89e4ae8ec70dd (diff) | |
download | FreeBSD-src-77c392a7a85ea00890d716f7d001c15a6525a389.zip FreeBSD-src-77c392a7a85ea00890d716f7d001c15a6525a389.tar.gz |
Forward declare struct thread.
-rw-r--r-- | sys/sys/smp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/smp.h b/sys/sys/smp.h index 21c67f4..9fe9faf 100644 --- a/sys/sys/smp.h +++ b/sys/sys/smp.h @@ -48,6 +48,8 @@ extern u_int mp_maxid; * cpu_mp_announce() will be called so that machine dependent messages about * the MP support may be output to the console if desired. */ +struct thread; + void cpu_mp_announce(void); int cpu_mp_probe(void); void cpu_mp_start(void); |