Changeset dc5c303 in mainline for kernel/generic/include/debug/types.h
- Timestamp:
- 2023-12-28T13:59:23Z (2 years ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 moved
-
kernel/generic/include/debug/types.h (moved) (moved from boot/generic/include/memstr.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/debug/types.h
r42c2e65 rdc5c303 1 1 /* 2 * Copyright (c) 20 01-2004 Jakub Jermar2 * Copyright (c) 2023 Jiří Zárevúcky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @file 30 */ 29 #ifndef DEBUG_DWARF_TYPES_H_ 30 #define DEBUG_DWARF_TYPES_H_ 31 31 32 #ifndef BOOT_MEMSTR_H_ 33 #define BOOT_MEMSTR_H_ 32 typedef unsigned dw_access_t; 33 typedef unsigned dw_at_t; 34 typedef unsigned dw_ate_t; 35 typedef unsigned dw_cc_t; 36 typedef unsigned dw_cfa_t; 37 typedef unsigned dw_defaulted_t; 38 typedef unsigned dw_ds_t; 39 typedef unsigned dw_dsc_t; 40 typedef unsigned dw_end_t; 41 typedef unsigned dw_form_t; 42 typedef unsigned dw_id_t; 43 typedef unsigned dw_idx_t; 44 typedef unsigned dw_idx_t; 45 typedef unsigned dw_inl_t; 46 typedef unsigned dw_lang_t; 47 typedef unsigned dw_lle_t; 48 typedef unsigned dw_lnct_t; 49 typedef unsigned dw_lne_t; 50 typedef unsigned dw_lns_t; 51 typedef unsigned dw_macro_t; 52 typedef unsigned dw_op_t; 53 typedef unsigned dw_ord_t; 54 typedef unsigned dw_rle_t; 55 typedef unsigned dw_sect_t; 56 typedef unsigned dw_tag_t; 57 typedef unsigned dw_ut_t; 58 typedef unsigned dw_virtuality_t; 59 typedef unsigned dw_vis_t; 34 60 35 #include <stddef.h> 36 37 extern void *memcpy(void *, const void *, size_t) 38 __attribute__((nonnull(1, 2))) 39 __attribute__((optimize("-fno-tree-loop-distribute-patterns"))); 40 extern void *memset(void *, int, size_t) 41 __attribute__((nonnull(1))) 42 __attribute__((optimize("-fno-tree-loop-distribute-patterns"))); 43 extern void *memmove(void *, const void *, size_t) 44 __attribute__((nonnull(1, 2))); 45 46 #endif 47 48 /** @} 49 */ 61 #endif /* DEBUG_DWARF_TYPES_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.
