diff options
author | Fangrui Song <maskray@google.com> | 2022-08-10 21:46:09 -0700 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2022-08-10 21:46:09 -0700 |
commit | 61d2066c193472ca324b851e7f9b3668592913f0 (patch) | |
tree | e0c587a03664f61f08663be2e390a26a836a960e /elf/elf.h | |
parent | 2ed26bca997a8fc898f4cb94484abaee2f307311 (diff) | |
download | glibc-61d2066c193472ca324b851e7f9b3668592913f0.zip glibc-61d2066c193472ca324b851e7f9b3668592913f0.tar.gz glibc-61d2066c193472ca324b851e7f9b3668592913f0.tar.bz2 |
elf.h: Add ELFCOMPRESS_ZSTD
From the approved generic ABI proposal
https://groups.google.com/g/generic-abi/c/satyPkuMisk
("Add new ch_type value: ELFCOMPRESS_ZSTD").
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'elf/elf.h')
-rw-r--r-- | elf/elf.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -506,6 +506,7 @@ typedef struct /* Legal values for ch_type (compression algorithm). */ #define ELFCOMPRESS_ZLIB 1 /* ZLIB/DEFLATE algorithm. */ +#define ELFCOMPRESS_ZSTD 2 /* Zstandard algorithm. */ #define ELFCOMPRESS_LOOS 0x60000000 /* Start of OS-specific. */ #define ELFCOMPRESS_HIOS 0x6fffffff /* End of OS-specific. */ #define ELFCOMPRESS_LOPROC 0x70000000 /* Start of processor-specific. */ |