]> granicus.if.org Git - xz/commitdiff
Add underscores to attributes (__attribute((__foo__))).
authorLasse Collin <lasse.collin@tukaani.org>
Tue, 17 May 2011 08:54:38 +0000 (11:54 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Tue, 17 May 2011 08:54:38 +0000 (11:54 +0300)
25 files changed:
src/liblzma/common/alone_decoder.c
src/liblzma/common/alone_encoder.c
src/liblzma/common/block_encoder.c
src/liblzma/common/common.c
src/liblzma/common/common.h
src/liblzma/common/index_decoder.c
src/liblzma/common/index_encoder.c
src/liblzma/delta/delta_encoder.c
src/liblzma/lz/lz_decoder.c
src/liblzma/lz/lz_encoder.c
src/liblzma/simple/arm.c
src/liblzma/simple/armthumb.c
src/liblzma/simple/ia64.c
src/liblzma/simple/powerpc.c
src/liblzma/simple/simple_coder.c
src/liblzma/simple/sparc.c
src/lzmainfo/lzmainfo.c
src/xz/coder.c
src/xz/hardware.h
src/xz/message.c
src/xz/message.h
src/xz/options.c
src/xz/signals.c
src/xz/util.h
src/xzdec/xzdec.c

index 039b42859546c7fbe69079a2b8de06d52a705e05..678c79e6543339219a19aafaf387c4af463f727d 100644 (file)
@@ -46,7 +46,7 @@ struct lzma_coder_s {
 
 static lzma_ret
 alone_decode(lzma_coder *coder,
-               lzma_allocator *allocator lzma_attribute((unused)),
+               lzma_allocator *allocator lzma_attribute((__unused__)),
                const uint8_t *restrict in, size_t *restrict in_pos,
                size_t in_size, uint8_t *restrict out,
                size_t *restrict out_pos, size_t out_size,
index 7f6165573360640e57ca8980b51d3711fef401e1..eb1697e99753955c671d042ac23eddb7df00b1c8 100644 (file)
@@ -32,7 +32,7 @@ struct lzma_coder_s {
 
 static lzma_ret
 alone_encode(lzma_coder *coder,
-               lzma_allocator *allocator lzma_attribute((unused)),
+               lzma_allocator *allocator lzma_attribute((__unused__)),
                const uint8_t *restrict in, size_t *restrict in_pos,
                size_t in_size, uint8_t *restrict out,
                size_t *restrict out_pos, size_t out_size,
index b34c5013b9c902398f54a3833c2f3c1a775a96e5..1eeb502b7f83e298ae9f23fa9c5c5f92216b0fa2 100644 (file)
@@ -144,7 +144,7 @@ block_encoder_end(lzma_coder *coder, lzma_allocator *allocator)
 
 static lzma_ret
 block_encoder_update(lzma_coder *coder, lzma_allocator *allocator,
-               const lzma_filter *filters lzma_attribute((unused)),
+               const lzma_filter *filters lzma_attribute((__unused__)),
                const lzma_filter *reversed_filters)
 {
        if (coder->sequence != SEQ_CODE)
index 6afb4fbf0259dec2dc14bac37a49317a82480b2c..85ae96a92714395d8600df4e16080452d79e2f7f 100644 (file)
@@ -35,7 +35,7 @@ lzma_version_string(void)
 // Memory allocation //
 ///////////////////////
 
-extern void * lzma_attribute((malloc))
+extern void * lzma_attribute((__malloc__)) lzma_attr_alloc_size(1)
 lzma_alloc(size_t size, lzma_allocator *allocator)
 {
        // Some malloc() variants return NULL if called with size == 0.
index 9d776f9ac9560911b3468fa9322d00c5a70cc6af..5c92af27dfe165b26b62d9cd2e40ea4b2d745f06 100644 (file)
@@ -221,7 +221,7 @@ struct lzma_internal_s {
 
 /// Allocates memory
 extern void *lzma_alloc(size_t size, lzma_allocator *allocator)
-               lzma_attribute((malloc)) lzma_attr_alloc_size(1);
+               lzma_attribute((__malloc__)) lzma_attr_alloc_size(1);
 
 /// Frees memory
 extern void lzma_free(void *ptr, lzma_allocator *allocator);
index a6bc650e046ce9c62f829b5fae4f2ab36f4b2496..83c8a3af1db8d2adb10b7fb2a9297e31c02d1637 100644 (file)
@@ -56,10 +56,11 @@ struct lzma_coder_s {
 static lzma_ret
 index_decode(lzma_coder *coder, lzma_allocator *allocator,
                const uint8_t *restrict in, size_t *restrict in_pos,
-               size_t in_size, uint8_t *restrict out lzma_attribute((unused)),
-               size_t *restrict out_pos lzma_attribute((unused)),
-               size_t out_size lzma_attribute((unused)),
-               lzma_action action lzma_attribute((unused)))
+               size_t in_size,
+               uint8_t *restrict out lzma_attribute((__unused__)),
+               size_t *restrict out_pos lzma_attribute((__unused__)),
+               size_t out_size lzma_attribute((__unused__)),
+               lzma_action action lzma_attribute((__unused__)))
 {
        // Similar optimization as in index_encoder.c
        const size_t in_start = *in_pos;
index c10d7afa06b4cd81aba45f4ecea72b99dee75395..45919f094c4242de161d72c789a07037b40121d1 100644 (file)
@@ -42,12 +42,13 @@ struct lzma_coder_s {
 
 static lzma_ret
 index_encode(lzma_coder *coder,
-               lzma_allocator *allocator lzma_attribute((unused)),
-               const uint8_t *restrict in lzma_attribute((unused)),
-               size_t *restrict in_pos lzma_attribute((unused)),
-               size_t in_size lzma_attribute((unused)),
+               lzma_allocator *allocator lzma_attribute((__unused__)),
+               const uint8_t *restrict in lzma_attribute((__unused__)),
+               size_t *restrict in_pos lzma_attribute((__unused__)),
+               size_t in_size lzma_attribute((__unused__)),
                uint8_t *restrict out, size_t *restrict out_pos,
-               size_t out_size, lzma_action action lzma_attribute((unused)))
+               size_t out_size,
+               lzma_action action lzma_attribute((__unused__)))
 {
        // Position where to start calculating CRC32. The idea is that we
        // need to call lzma_crc32() only once per call to index_encode().
index ea1cc2cb020c0d537b03948e32792fc60025ea5a..15c7951e104a56f93a4e561be57bc43839529c67 100644 (file)
@@ -85,7 +85,7 @@ delta_encode(lzma_coder *coder, lzma_allocator *allocator,
 
 static lzma_ret
 delta_encoder_update(lzma_coder *coder, lzma_allocator *allocator,
-               const lzma_filter *filters_null lzma_attribute((unused)),
+               const lzma_filter *filters_null lzma_attribute((__unused__)),
                const lzma_filter *reversed_filters)
 {
        // Delta doesn't and will never support changing the options in
index 2c57355125f7a68612dc446d79bc4b5edc64edb7..d74085cf44719a10cf7c1105935b880362a96cad 100644 (file)
@@ -126,7 +126,7 @@ decode_buffer(lzma_coder *coder,
 
 static lzma_ret
 lz_decode(lzma_coder *coder,
-               lzma_allocator *allocator lzma_attribute((unused)),
+               lzma_allocator *allocator lzma_attribute((__unused__)),
                const uint8_t *restrict in, size_t *restrict in_pos,
                size_t in_size, uint8_t *restrict out,
                size_t *restrict out_pos, size_t out_size,
index 273f577b69b92892ee680f401a602364bc1b3bd5..e2406965882c27111702bc02adfca2cefc2ba674 100644 (file)
@@ -480,7 +480,7 @@ lz_encoder_end(lzma_coder *coder, lzma_allocator *allocator)
 
 static lzma_ret
 lz_encoder_update(lzma_coder *coder, lzma_allocator *allocator,
-               const lzma_filter *filters_null lzma_attribute((unused)),
+               const lzma_filter *filters_null lzma_attribute((__unused__)),
                const lzma_filter *reversed_filters)
 {
        if (coder->lz.options_update == NULL)
index 8fcf64374914617fe8d516deb74be5d71fec1bbc..a84702ac62f205489a1dcae5031e260f310dfdc7 100644 (file)
@@ -15,7 +15,7 @@
 
 
 static size_t
-arm_code(lzma_simple *simple lzma_attribute((unused)),
+arm_code(lzma_simple *simple lzma_attribute((__unused__)),
                uint32_t now_pos, bool is_encoder,
                uint8_t *buffer, size_t size)
 {
index eb6a69d1282a08e2b0652857891b57557a877af5..4b49175fec4d4bfb9749545e66d0e91ef8556581 100644 (file)
@@ -15,7 +15,7 @@
 
 
 static size_t
-armthumb_code(lzma_simple *simple lzma_attribute((unused)),
+armthumb_code(lzma_simple *simple lzma_attribute((__unused__)),
                uint32_t now_pos, bool is_encoder,
                uint8_t *buffer, size_t size)
 {
index fd263d4aea0d844bda62b3fd42efa8c16bfe5dff..ce3692b98f1d771b771288f883a22b36cca110d4 100644 (file)
@@ -15,7 +15,7 @@
 
 
 static size_t
-ia64_code(lzma_simple *simple lzma_attribute((unused)),
+ia64_code(lzma_simple *simple lzma_attribute((__unused__)),
                uint32_t now_pos, bool is_encoder,
                uint8_t *buffer, size_t size)
 {
index aaa14f22197715f4ad863036950d11e5ada8301d..6f8351176c5e37620a54384acf21db6aeace142c 100644 (file)
@@ -15,7 +15,7 @@
 
 
 static size_t
-powerpc_code(lzma_simple *simple lzma_attribute((unused)),
+powerpc_code(lzma_simple *simple lzma_attribute((__unused__)),
                uint32_t now_pos, bool is_encoder,
                uint8_t *buffer, size_t size)
 {
index 06db86ec2d0a43bc25f0b3ff2391fb8c2ffb7a6f..37de7fa1a0c5b0b12c1194b42a8fcc0cdd4e6fee 100644 (file)
@@ -212,7 +212,7 @@ simple_coder_end(lzma_coder *coder, lzma_allocator *allocator)
 
 static lzma_ret
 simple_coder_update(lzma_coder *coder, lzma_allocator *allocator,
-               const lzma_filter *filters_null lzma_attribute((unused)),
+               const lzma_filter *filters_null lzma_attribute((__unused__)),
                const lzma_filter *reversed_filters)
 {
        // No update support, just call the next filter in the chain.
index 808a59aaac78cf54c2dec4f68b3486b4b0722745..8270d6ab19f12ed3c39f46fc69e8ef7e1919d931 100644 (file)
@@ -15,7 +15,7 @@
 
 
 static size_t
-sparc_code(lzma_simple *simple lzma_attribute((unused)),
+sparc_code(lzma_simple *simple lzma_attribute((__unused__)),
                uint32_t now_pos, bool is_encoder,
                uint8_t *buffer, size_t size)
 {
index 3100dc631af2ec98a3515935f89caad0f006aefe..b0ccdfb430ec39dc8dca77ad673481a91ec596ba 100644 (file)
@@ -26,7 +26,7 @@
 #endif
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 help(void)
 {
        printf(
@@ -45,7 +45,7 @@ _("Usage: %s [--help] [--version] [FILE]...\n"
 }
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 version(void)
 {
        puts("lzmainfo (" PACKAGE_NAME ") " LZMA_VERSION_STRING);
index b470e5866140cb7cfa5d0fe3fb99679935e719da..41193a7ec3d08f230f597192df19ed31e451cc3b 100644 (file)
@@ -112,7 +112,7 @@ coder_add_filter(lzma_vli id, void *options)
 }
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 memlimit_too_small(uint64_t memory_usage)
 {
        message(V_ERROR, _("Memory usage limit is too low for the given "
index 46ebad5babed9a00e4e172560a93e569dcae9ee4..4fae61815656f8a5717a859887ba95c3849c5078 100644 (file)
@@ -34,4 +34,4 @@ extern void hardware_memlimit_set(uint64_t new_memlimit,
 extern uint64_t hardware_memlimit_get(enum operation_mode mode);
 
 /// Display the amount of RAM and memory usage limits and exit.
-extern void hardware_memlimit_show(void) lzma_attribute((noreturn));
+extern void hardware_memlimit_show(void) lzma_attribute((__noreturn__));
index 2eecda9449bbae2850b1df13a9c67e4cec507a2d..9d9ddae1c0fb360aa1d574da777b4d6f2a29e268 100644 (file)
@@ -94,7 +94,7 @@ static volatile sig_atomic_t progress_needs_updating = false;
 
 /// Signal handler for SIGALRM
 static void
-progress_signal_handler(int sig lzma_attribute((unused)))
+progress_signal_handler(int sig lzma_attribute((__unused__)))
 {
        progress_needs_updating = true;
        return;
index e3fca3cc42ca486cf9742ec64549648d33a25596..74599bd978a189fbb0ae3b0a5214a67ce8657856 100644 (file)
@@ -45,7 +45,7 @@ extern enum message_verbosity message_verbosity_get(void);
 ///
 /// This doesn't touch the exit status.
 extern void message(enum message_verbosity verbosity, const char *fmt, ...)
-               lzma_attribute((format(printf, 2, 3)));
+               lzma_attribute((__format__(__printf__, 2, 3)));
 
 
 /// \brief      Prints a warning and possibly sets exit status
@@ -53,7 +53,7 @@ extern void message(enum message_verbosity verbosity, const char *fmt, ...)
 /// The message is printed only if verbosity level is at least V_WARNING.
 /// The exit status is set to WARNING unless it was already at ERROR.
 extern void message_warning(const char *fmt, ...)
-               lzma_attribute((format(printf, 1, 2)));
+               lzma_attribute((__format__(__printf__, 1, 2)));
 
 
 /// \brief      Prints an error message and sets exit status
@@ -61,25 +61,25 @@ extern void message_warning(const char *fmt, ...)
 /// The message is printed only if verbosity level is at least V_ERROR.
 /// The exit status is set to ERROR.
 extern void message_error(const char *fmt, ...)
-               lzma_attribute((format(printf, 1, 2)));
+               lzma_attribute((__format__(__printf__, 1, 2)));
 
 
 /// \brief      Prints an error message and exits with EXIT_ERROR
 ///
 /// The message is printed only if verbosity level is at least V_ERROR.
 extern void message_fatal(const char *fmt, ...)
-               lzma_attribute((format(printf, 1, 2)))
-               lzma_attribute((noreturn));
+               lzma_attribute((__format__(__printf__, 1, 2)))
+               lzma_attribute((__noreturn__));
 
 
 /// Print an error message that an internal error occurred and exit with
 /// EXIT_ERROR.
-extern void message_bug(void) lzma_attribute((noreturn));
+extern void message_bug(void) lzma_attribute((__noreturn__));
 
 
 /// Print a message that establishing signal handlers failed, and exit with
 /// exit status ERROR.
-extern void message_signal_handler(void) lzma_attribute((noreturn));
+extern void message_signal_handler(void) lzma_attribute((__noreturn__));
 
 
 /// Convert lzma_ret to a string.
@@ -116,11 +116,11 @@ extern void message_try_help(void);
 
 
 /// Prints the version number to stdout and exits with exit status SUCCESS.
-extern void message_version(void) lzma_attribute((noreturn));
+extern void message_version(void) lzma_attribute((__noreturn__));
 
 
 /// Print the help message.
-extern void message_help(bool long_help) lzma_attribute((noreturn));
+extern void message_help(bool long_help) lzma_attribute((__noreturn__));
 
 
 /// \brief      Set the total number of files to be processed
index 379a2e46dc08a28906b4c329916d16324a8dca81..f21a0ba510651b61301c28cc77b35cfd1084c8d9 100644 (file)
@@ -150,7 +150,7 @@ enum {
 
 static void
 set_delta(void *options, uint32_t key, uint64_t value,
-               const char *valuestr lzma_attribute((unused)))
+               const char *valuestr lzma_attribute((__unused__)))
 {
        lzma_options_delta *opt = options;
        switch (key) {
@@ -194,7 +194,7 @@ enum {
 
 static void
 set_bcj(void *options, uint32_t key, uint64_t value,
-               const char *valuestr lzma_attribute((unused)))
+               const char *valuestr lzma_attribute((__unused__)))
 {
        lzma_options_bcj *opt = options;
        switch (key) {
@@ -241,7 +241,7 @@ enum {
 };
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 error_lzma_preset(const char *valuestr)
 {
        message_fatal(_("Unsupported LZMA1/LZMA2 preset: %s"), valuestr);
index 4d6a9da316248364103116e315be9d4ea34d892a..de213644d00b2365bfbb1a79c08d29d3a3e32de5 100644 (file)
@@ -179,7 +179,7 @@ signals_exit(void)
 // console window.
 
 static BOOL WINAPI
-signal_handler(DWORD type lzma_attribute((unused)))
+signal_handler(DWORD type lzma_attribute((__unused__)))
 {
        // Since we don't get a signal number which we could raise() at
        // signals_exit() like on POSIX, just set the exit status to
index 4b2d3e2f573fa6837c2614c429174a13d8830423..a2516bf968038df38ef98915f8b00d075aed15fd 100644 (file)
 
 /// \brief      Safe realloc() that never returns NULL
 extern void *xrealloc(void *ptr, size_t size)
-               lzma_attribute((malloc)) lzma_attr_alloc_size(2);
+               lzma_attribute((__malloc__)) lzma_attr_alloc_size(2);
 
 
 /// \brief      Safe strdup() that never returns NULL
-extern char *xstrdup(const char *src) lzma_attribute((malloc));
+extern char *xstrdup(const char *src) lzma_attribute((__malloc__));
 
 
 /// \brief      Fancy version of strtoull()
@@ -102,7 +102,7 @@ extern const char *uint64_to_nicestr(uint64_t value,
 /// A maximum of *left bytes is written starting from *pos. *pos and *left
 /// are updated accordingly.
 extern void my_snprintf(char **pos, size_t *left, const char *fmt, ...)
-               lzma_attribute((format(printf, 3, 4)));
+               lzma_attribute((__format__(__printf__, 3, 4)));
 
 
 /// \brief      Check if filename is empty and print an error message
index fd015076de97ca8fd30b5380b20074c921ecef0b..b7830db4b523a2a71d8817b141702bed1b0d5855 100644 (file)
@@ -40,7 +40,7 @@
 static unsigned int display_errors = 2;
 
 
-static void lzma_attribute((format(printf, 1, 2)))
+static void lzma_attribute((__format__(__printf__, 1, 2)))
 my_errorf(const char *fmt, ...)
 {
        va_list ap;
@@ -57,7 +57,7 @@ my_errorf(const char *fmt, ...)
 }
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 help(void)
 {
        printf(
@@ -81,7 +81,7 @@ PACKAGE_NAME " home page: <" PACKAGE_URL ">\n", progname);
 }
 
 
-static void lzma_attribute((noreturn))
+static void lzma_attribute((__noreturn__))
 version(void)
 {
        printf(TOOL_FORMAT "dec (" PACKAGE_NAME ") " LZMA_VERSION_STRING "\n"