Changeset f27ada7 in mainline for uspace/app/taskdump/include/elf.h
- Timestamp:
- 2010-02-06T21:38:11Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- eb73a50
- Parents:
- 25e963a (diff), dafa2d04 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/include/elf.h
r25e963a rf27ada7 148 148 #define SHF_MASKPROC 0xf0000000 149 149 150 /** Macros for decomposing elf_symbol.st_info into binging and type */ 151 #define ELF_ST_BIND(i) ((i) >> 4) 152 #define ELF_ST_TYPE(i) ((i) & 0x0f) 153 #define ELF_ST_INFO(b, t) (((b) << 4) + ((t) & 0x0f)) 154 150 155 /** 151 156 * Symbol binding
Note:
See TracChangeset
for help on using the changeset viewer.