Changeset dc5c303 in mainline for kernel/generic/include/debug/types.h


Ignore:
Timestamp:
2023-12-28T13:59:23Z (2 years ago)
Author:
GitHub <noreply@…>
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)
Message:

Merge branch 'master' into topic/packet-capture

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/debug/types.h

    r42c2e65 rdc5c303  
    11/*
    2  * Copyright (c) 2001-2004 Jakub Jermar
     2 * Copyright (c) 2023 Jiří Zárevúcky
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @file
    30  */
     29#ifndef DEBUG_DWARF_TYPES_H_
     30#define DEBUG_DWARF_TYPES_H_
    3131
    32 #ifndef BOOT_MEMSTR_H_
    33 #define BOOT_MEMSTR_H_
     32typedef unsigned dw_access_t;
     33typedef unsigned dw_at_t;
     34typedef unsigned dw_ate_t;
     35typedef unsigned dw_cc_t;
     36typedef unsigned dw_cfa_t;
     37typedef unsigned dw_defaulted_t;
     38typedef unsigned dw_ds_t;
     39typedef unsigned dw_dsc_t;
     40typedef unsigned dw_end_t;
     41typedef unsigned dw_form_t;
     42typedef unsigned dw_id_t;
     43typedef unsigned dw_idx_t;
     44typedef unsigned dw_idx_t;
     45typedef unsigned dw_inl_t;
     46typedef unsigned dw_lang_t;
     47typedef unsigned dw_lle_t;
     48typedef unsigned dw_lnct_t;
     49typedef unsigned dw_lne_t;
     50typedef unsigned dw_lns_t;
     51typedef unsigned dw_macro_t;
     52typedef unsigned dw_op_t;
     53typedef unsigned dw_ord_t;
     54typedef unsigned dw_rle_t;
     55typedef unsigned dw_sect_t;
     56typedef unsigned dw_tag_t;
     57typedef unsigned dw_ut_t;
     58typedef unsigned dw_virtuality_t;
     59typedef unsigned dw_vis_t;
    3460
    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.