search for: uuid_byt

Displaying 1 result from an estimated 1 matches for "uuid_byt".

Did you mean: uuid_be
2010 Aug 13
3
[PATCH] xl: make libxl_uuid2string internal to libxenlight
...libxl/xl_cmdimpl.c Thu Aug 12 18:03:23 2010 +0100 +++ b/tools/libxl/xl_cmdimpl.c Fri Aug 13 15:32:31 2010 +0100 @@ -41,6 +41,10 @@ #include "xl.h" #define UUID_FMT "%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx" +#define UUID_BYTES(uuid) uuid[0], uuid[1], uuid[2], uuid[3], \ + uuid[4], uuid[5], uuid[6], uuid[7], \ + uuid[8], uuid[9], uuid[10], uuid[11], \ + uuid[12], uuid[13], uuid[14], uuid[15] \ #define CHK_ERRNO( call ) ({ \ int chk_e...