Rev 1264 | Rev 1705 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1264 | Rev 1702 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | /* |
1 | /* |
| 2 | * Copyright (C) 2001-2004 Jakub Jermar |
2 | * Copyright (C) 2001-2004 Jakub Jermar |
| 3 | * All rights reserved. |
3 | * All rights reserved. |
| 4 | * |
4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
6 | * modification, are permitted provided that the following conditions |
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @defgroup cpu CPU |
|
| - | 30 | * @ingroup kernel |
|
| - | 31 | * @{ |
|
| - | 32 | * @} |
|
| - | 33 | */ |
|
| - | 34 | ||
| - | 35 | /** @addtogroup genericcpu generic |
|
| - | 36 | * @ingroup cpu |
|
| - | 37 | * @{ |
|
| - | 38 | */ |
|
| - | 39 | ||
| 29 | /** |
40 | /** |
| 30 | * @file cpu.c |
41 | * @file |
| 31 | * @brief CPU subsystem initialization and listing. |
42 | * @brief CPU subsystem initialization and listing. |
| 32 | */ |
43 | */ |
| 33 | 44 | ||
| 34 | #include <cpu.h> |
45 | #include <cpu.h> |
| 35 | #include <arch.h> |
46 | #include <arch.h> |
| Line 102... | Line 113... | ||
| 102 | cpu_print_report(&cpus[i]); |
113 | cpu_print_report(&cpus[i]); |
| 103 | else |
114 | else |
| 104 | printf("cpu%d: not active\n", i); |
115 | printf("cpu%d: not active\n", i); |
| 105 | } |
116 | } |
| 106 | } |
117 | } |
| - | 118 | ||
| - | 119 | /** @} |
|
| - | 120 | */ |
|
| - | 121 | ||