Changeset e1888f9 in mainline
- Timestamp:
- 2006-02-03T16:16:38Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c352c2e
- Parents:
- fb10289b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/context.h
rfb10289b re1888f9 52 52 * address as the corresponding call to context_save(). 53 53 * 54 * This MUST be a macro, gcc -O0 does not inline functions even 55 * if they are marked inline and context_save_arch must be called 56 * from level <= that when context_restore is called. 57 * 54 58 * @param c Context structure. 55 59 * 56 60 * @return context_save() returns 1, context_restore() returns 0. 57 61 */ 58 static inline int context_save(context_t *c) 59 { 60 return context_save_arch(c); 61 } 62 #define context_save(c) context_save_arch(c) 62 63 63 64 /** Restore register context.
Note:
See TracChangeset
for help on using the changeset viewer.