Changeset f429331 in mainline for kernel/generic/include
- Timestamp:
- 2007-01-21T18:52:11Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- da1f9dc
- Parents:
- 8dbc18c
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/cpu.h
r8dbc18c rf429331 53 53 * There is one structure like this for every processor. 54 54 */ 55 struct cpu{55 typedef struct { 56 56 SPINLOCK_DECLARE(lock); 57 57 … … 92 92 */ 93 93 uint8_t *stack; 94 } ;94 } cpu_t; 95 95 96 96 extern cpu_t *cpus; -
kernel/generic/include/time/timeout.h
r8dbc18c rf429331 37 37 38 38 #include <arch/types.h> 39 #include < typedefs.h>39 #include <cpu.h> 40 40 #include <synch/spinlock.h> 41 41 #include <adt/list.h> -
kernel/generic/include/typedefs.h
r8dbc18c rf429331 48 48 typedef unsigned long context_id_t; 49 49 50 typedef struct cpu_info cpu_info_t;51 52 typedef struct cpu cpu_t;53 typedef struct cpu_arch cpu_arch_t;54 50 typedef struct task task_t; 55 51 typedef enum state state_t;
Note:
See TracChangeset
for help on using the changeset viewer.