Changeset cd13c2a in mainline
- Timestamp:
- 2006-10-18T17:15:29Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- de57e060
- Parents:
- a000fd71
- Location:
- kernel/generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ipc/ipc.h
ra000fd71 rcd13c2a 50 50 #define IPC_CALL_ANSWERED (1<<0) /**< This is answer to a call */ 51 51 #define IPC_CALL_STATIC_ALLOC (1<<1) /**< This call will not be freed on error */ 52 #define IPC_CALL_DISCARD_ANSWER (1<<2) /**< Answer will not be passed to 53 * userspace, will be discarded */ 54 #define IPC_CALL_FORWARDED (1<<3) /* Call was forwarded */ 55 #define IPC_CALL_CONN_ME_TO (1<<4) /* Identify connect_me_to answer */ 56 #define IPC_CALL_NOTIF (1<<5) /* Interrupt notification */ 52 #define IPC_CALL_DISCARD_ANSWER (1<<2) /**< Answer will not be passed to userspace, will be discarded */ 53 #define IPC_CALL_FORWARDED (1<<3) /**< Call was forwarded */ 54 #define IPC_CALL_CONN_ME_TO (1<<4) /**< Identify connect_me_to answer */ 55 #define IPC_CALL_NOTIF (1<<5) /**< Interrupt notification */ 57 56 58 57 /* Flags of callid (the addresses are aligned at least to 4, -
kernel/generic/include/mm/asid.h
ra000fd71 rcd13c2a 55 55 #ifndef __ASM__ 56 56 57 #define ASIDS_ALLOCABLE ((ASID_MAX +1)-ASID_START)57 #define ASIDS_ALLOCABLE ((ASID_MAX + 1) - ASID_START) 58 58 59 59 extern spinlock_t asidlock; -
kernel/generic/include/mm/slab.h
ra000fd71 rcd13c2a 57 57 58 58 /* slab_reclaim constants */ 59 #define SLAB_RECLAIM_ALL 0x1 /**< Reclaim all possible memory, because 60 * we are in memory stress */ 59 #define SLAB_RECLAIM_ALL 0x1 /**< Reclaim all possible memory, because we are in memory stress */ 61 60 62 61 /* cache_create flags */ 63 62 #define SLAB_CACHE_NOMAGAZINE 0x1 /**< Do not use per-cpu cache */ 64 63 #define SLAB_CACHE_SLINSIDE 0x2 /**< Have control structure inside SLAB */ 65 /** We add magazine cache later, if we have this flag */ 66 #define SLAB_CACHE_MAGDEFERRED (0x4 | SLAB_CACHE_NOMAGAZINE) 64 #define SLAB_CACHE_MAGDEFERRED (0x4 | SLAB_CACHE_NOMAGAZINE) /**< We add magazine cache later, if we have this flag */ 67 65 68 66 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.