Changeset da52547 in mainline for kernel/generic/include
- Timestamp:
- 2010-07-02T10:16:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5382d4f
- Parents:
- ad8f03d2
- Location:
- kernel/generic/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/console.h
rad8f03d2 rda52547 56 56 extern outdev_t *stdout; 57 57 58 extern void early_putchar(wchar_t); 59 58 60 extern indev_t *stdin_wire(void); 59 61 extern void stdout_wire(outdev_t *outdev); -
kernel/generic/include/context.h
rad8f03d2 rda52547 87 87 * 88 88 * @param ctx Context structure. 89 * 89 90 */ 90 static inline void context_restore(context_t *ctx) 91 static inline void __attribute__((no_instrument_function)) 92 context_restore(context_t *ctx) 91 93 { 92 94 context_restore_arch(ctx); -
kernel/generic/include/debug.h
rad8f03d2 rda52547 98 98 } while (0) 99 99 100 extern void __cyg_profile_func_enter(void *, void *);101 extern void __cyg_profile_func_exit(void *, void *);102 103 100 #else /* CONFIG_LOG */ 104 101 … … 107 104 #endif /* CONFIG_LOG */ 108 105 106 #ifdef CONFIG_TRACE 107 108 extern void __cyg_profile_func_enter(void *, void *); 109 extern void __cyg_profile_func_exit(void *, void *); 110 111 #endif /* CONFIG_TRACE */ 112 109 113 #endif 110 114 -
kernel/generic/include/macros.h
rad8f03d2 rda52547 47 47 * @param sz2 Size of the second interval. 48 48 */ 49 static inline int overlaps(uintptr_t s1, size_t sz1, uintptr_t s2, size_t sz2) 49 static inline int __attribute__((no_instrument_function)) 50 overlaps(uintptr_t s1, size_t sz1, uintptr_t s2, size_t sz2) 50 51 { 51 52 uintptr_t e1 = s1 + sz1;
Note:
See TracChangeset
for help on using the changeset viewer.
