diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-09-17 17:06:59 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-09-17 17:06:59 +0000 |
commit | 24acea547572659fd2041803882411b68ff0d6eb (patch) | |
tree | d6ddc788cb4c0ec0fe5ab4aff75fb0785211dcb5 /ldso/include/dl-hash.h | |
parent | 89856a5b7e6894c36df6601365d429975df0d18a (diff) |
Fix bug 430 and reduce ldso size with 1KB :). Not sure if I need to use fstat64, but I am sure someone will
tell me.
Diffstat (limited to 'ldso/include/dl-hash.h')
-rw-r--r-- | ldso/include/dl-hash.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ldso/include/dl-hash.h b/ldso/include/dl-hash.h index af6c2b93f..00b9c87f6 100644 --- a/ldso/include/dl-hash.h +++ b/ldso/include/dl-hash.h @@ -49,6 +49,9 @@ struct elf_resolve{ ElfW(Addr) relro_addr; size_t relro_size; + dev_t st_dev; /* device */ + ino_t st_ino; /* inode */ + #ifdef __powerpc__ /* this is used to store the address of relocation data words, so * we don't have to calculate it every time, which requires a divide */ |