0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

elf > symbol table > binding > #define ELF32_ST_BIND(info) ((info) >> 4) > 局所シンボル / 大域シンボル / ...

Last updated at Posted at 2015-08-23

symbol tableから得られるinfoからbind(binding)が得られる。

st_info
シンボルの種類および結び付けられる属性。値と意味のリストを、表 7–18 に示します。次のコードは、値の処理方法を示します。sys/elf.h を参照してください。

 #define ELF32_ST_BIND(info)          ((info) >> 4)

表 7–18 ELF シンボルのバインディング、(ELF32_ST_BIND、ELF64_ST_BIND)

STB_LOCAL
局所シンボル。
STB_GLOBAL
大域シンボル。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?