X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Futil.h;h=5ae0775f1b36491e36b6d720a4ee73456000403a;hb=8cdf0349740c3e1a73af9aa6209bb22be952cd37;hp=7615288d8043eb51e80b54d8da582ebbeddc40b3;hpb=44b4d050d4a2c966ed6f4aef2e523f70b6463648;p=sliver-openvswitch.git diff --git a/lib/util.h b/lib/util.h index 7615288d8..5ae0775f1 100644 --- a/lib/util.h +++ b/lib/util.h @@ -140,12 +140,12 @@ extern const char *program_name; extern "C" { #endif -void set_program_name(const char *); +void set_program_name__(const char *name, const char *date, const char *time); +#define set_program_name(name) \ + set_program_name__(name, __DATE__, __TIME__) -void ovs_print_version(char *date, char *time, - uint8_t min_ofp, uint8_t max_ofp); -#define OVS_PRINT_VERSION(min_ofp, max_ofp) \ - ovs_print_version(__DATE__, __TIME__, (min_ofp), (max_ofp)) +const char *get_program_version(void); +void ovs_print_version(uint8_t min_ofp, uint8_t max_ofp); void out_of_memory(void) NO_RETURN; void *xmalloc(size_t) MALLOC_LIKE; @@ -194,6 +194,11 @@ char *base_name(const char *file_name); char *abs_file_name(const char *dir, const char *file_name); void ignore(bool x OVS_UNUSED); +int log_2_floor(uint32_t); +int ctz(uint32_t); + +bool is_all_zeros(const uint8_t *, size_t); +bool is_all_ones(const uint8_t *, size_t); #ifdef __cplusplus }