Changeset 04357767 in mainline
- Timestamp:
- 2010-11-26T01:23:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9ac2013
- Parents:
- 019a348
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/config.h
r019a348 r04357767 66 66 67 67 typedef struct { 68 size_t cpu_count;/**< Number of processors detected. */68 unsigned int cpu_count; /**< Number of processors detected. */ 69 69 volatile size_t cpu_active; /**< Number of processors that are up and running. */ 70 70 -
kernel/generic/include/cpu.h
r019a348 r04357767 83 83 * Processor ID assigned by kernel. 84 84 */ 85 size_t id;85 unsigned int id; 86 86 87 87 bool active; -
kernel/generic/include/sysinfo/abi.h
r019a348 r04357767 66 66 */ 67 67 typedef struct { 68 size_t id;/**< CPU ID as stored by kernel */68 unsigned int id; /**< CPU ID as stored by kernel */ 69 69 bool active; /**< CPU is activate */ 70 70 uint16_t frequency_mhz; /**< Frequency in MHz */
Note:
See TracChangeset
for help on using the changeset viewer.