X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=include%2Fcommon.h;h=5bc2a6f5ff321f3af65ae6016cb37ae991714cec;hp=aea1f67d33b820fc3315452844f159e121e3ac7b;hb=d61d7ffdfa8fab555a5086e61d2e9dfe699a14b9;hpb=4a7804bd08c790fc3c4233312e4b485c3302fe02 diff --git a/include/common.h b/include/common.h index aea1f67..5bc2a6f 100644 --- a/include/common.h +++ b/include/common.h @@ -11,6 +11,9 @@ #include #include +#define malloc "DON'T USE MALLOC" // use nbd_malloc() instead +#define free "DON'T USE FREE" // use nbd_free() instead + #define MAX_NUM_THREADS 4 // make this whatever you want, but make it a power of 2 #define CACHE_LINE_SIZE 64 @@ -33,15 +36,15 @@ #define TAG (1LL << 63) #define IS_TAGGED(v) ((int64_t)(v) < 0) -#define TAG_VALUE(v) ((int64_t)(v) | TAG) -#define STRIP_TAG(v) ((int64_t)(v) & ~TAG) +#define TAG_VALUE(v) ((uint64_t)(v) | TAG) +#define STRIP_TAG(v) ((uint64_t)(v) & ~TAG) #define TRUE 1 #define FALSE 0 -typedef long long int64_t; typedef unsigned long long uint64_t; typedef unsigned int uint32_t; +typedef unsigned char uint8_t; #include "lwt.h" #endif //COMMON_H