diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-21 23:53:02 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-08-21 23:53:02 +0200 |
commit | f484179454761d3a35f6d98751d62ccebbc986aa (patch) | |
tree | 08688d9ef0a1eabd7ea942280649fd7ef90df21e /src/lib.rs | |
parent | 225e2d46b64d84aa08959036a1a6d03f1a22ef56 (diff) | |
download | vdso-proxy-poc-f484179454761d3a35f6d98751d62ccebbc986aa.tar.gz vdso-proxy-poc-f484179454761d3a35f6d98751d62ccebbc986aa.zip |
add check for symbol version
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,8 @@ pub enum Error { /// Requested symbol not found in the ELF file. /// Captures the name of the requested symbol. SymbolNotFound(String), + /// Error during symbol version lookup. + SymbolVersionError(String), } /// Representation of an 64-bit virtual address. |