gallium/util: clear up that debug_get_flags_option returns a 64-bit mask

Reviewed-by: Kai Wasserbäch <kai@dev.carbon-project.org>
This commit is contained in:
Marek Olšák 2015-07-25 15:55:45 +02:00
parent b0528118df
commit 488a83637f
2 changed files with 7 additions and 7 deletions

View file

@ -256,12 +256,12 @@ static boolean str_has_option(const char *str, const char *name)
return FALSE;
}
unsigned long
uint64_t
debug_get_flags_option(const char *name,
const struct debug_named_value *flags,
unsigned long dfault)
uint64_t dfault)
{
unsigned long result;
uint64_t result;
const char *str;
const struct debug_named_value *orig = flags;
unsigned namealign = 0;
@ -276,7 +276,7 @@ debug_get_flags_option(const char *name,
namealign = MAX2(namealign, strlen(flags->name));
for (flags = orig; flags->name; ++flags)
_debug_printf("| %*s [0x%0*lx]%s%s\n", namealign, flags->name,
(int)sizeof(unsigned long)*CHAR_BIT/4, flags->value,
(int)sizeof(uint64_t)*CHAR_BIT/4, flags->value,
flags->desc ? " " : "", flags->desc ? flags->desc : "");
}
else {

View file

@ -269,7 +269,7 @@ void _debug_assert_fail(const char *expr,
struct debug_named_value
{
const char *name;
unsigned long value;
uint64_t value;
const char *desc;
};
@ -377,10 +377,10 @@ debug_get_bool_option(const char *name, boolean dfault);
long
debug_get_num_option(const char *name, long dfault);
unsigned long
uint64_t
debug_get_flags_option(const char *name,
const struct debug_named_value *flags,
unsigned long dfault);
uint64_t dfault);
#define DEBUG_GET_ONCE_BOOL_OPTION(sufix, name, dfault) \
static boolean \