| constants.h | | constants.h | |
| | | | |
| skipping to change at line 24 | | skipping to change at line 24 | |
| | | | |
| /* Public defines */ | | /* Public defines */ | |
| #define MEMCACHED_DEFAULT_PORT 11211 | | #define MEMCACHED_DEFAULT_PORT 11211 | |
| #define MEMCACHED_MAX_KEY 251 /* We add one to have it null terminated */ | | #define MEMCACHED_MAX_KEY 251 /* We add one to have it null terminated */ | |
| #define MEMCACHED_MAX_BUFFER 8196 | | #define MEMCACHED_MAX_BUFFER 8196 | |
| #define MEMCACHED_MAX_HOST_SORT_LENGTH 86 /* Used for Ketama */ | | #define MEMCACHED_MAX_HOST_SORT_LENGTH 86 /* Used for Ketama */ | |
| #define MEMCACHED_POINTS_PER_SERVER 100 | | #define MEMCACHED_POINTS_PER_SERVER 100 | |
| #define MEMCACHED_POINTS_PER_SERVER_KETAMA 160 | | #define MEMCACHED_POINTS_PER_SERVER_KETAMA 160 | |
| #define MEMCACHED_CONTINUUM_SIZE MEMCACHED_POINTS_PER_SERVER*100 /* This wo
uld then set max hosts to 100 */ | | #define MEMCACHED_CONTINUUM_SIZE MEMCACHED_POINTS_PER_SERVER*100 /* This wo
uld then set max hosts to 100 */ | |
| #define MEMCACHED_STRIDE 4 | | #define MEMCACHED_STRIDE 4 | |
|
| #define MEMCACHED_DEFAULT_TIMEOUT 1000 | | #define MEMCACHED_DEFAULT_TIMEOUT 5000 | |
| | | #define MEMCACHED_DEFAULT_CONNECT_TIMEOUT 4000 | |
| #define MEMCACHED_CONTINUUM_ADDITION 10 /* How many extra slots we should b
uild for in the continuum */ | | #define MEMCACHED_CONTINUUM_ADDITION 10 /* How many extra slots we should b
uild for in the continuum */ | |
| #define MEMCACHED_PREFIX_KEY_MAX_SIZE 128 | | #define MEMCACHED_PREFIX_KEY_MAX_SIZE 128 | |
| #define MEMCACHED_EXPIRATION_NOT_ADD 0xffffffffU | | #define MEMCACHED_EXPIRATION_NOT_ADD 0xffffffffU | |
| #define MEMCACHED_VERSION_STRING_LENGTH 24 | | #define MEMCACHED_VERSION_STRING_LENGTH 24 | |
| | | | |
| typedef enum { | | typedef enum { | |
| MEMCACHED_SUCCESS, | | MEMCACHED_SUCCESS, | |
| MEMCACHED_FAILURE, | | MEMCACHED_FAILURE, | |
| MEMCACHED_HOST_LOOKUP_FAILURE, | | MEMCACHED_HOST_LOOKUP_FAILURE, | |
| MEMCACHED_CONNECTION_FAILURE, | | MEMCACHED_CONNECTION_FAILURE, | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 2 lines changed or added | |
|
| watchpoint.h | | watchpoint.h | |
| | | | |
| skipping to change at line 53 | | skipping to change at line 53 | |
| #endif // __stack_dump() | | #endif // __stack_dump() | |
| | | | |
| #include <assert.h> | | #include <assert.h> | |
| | | | |
| #define WATCHPOINT do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)\n", __FILE
__, __LINE__,__func__);fflush(stdout); } while (0) | | #define WATCHPOINT do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)\n", __FILE
__, __LINE__,__func__);fflush(stdout); } while (0) | |
| #define WATCHPOINT_ERROR(A) do {fprintf(stderr, "\nWATCHPOINT %s:%d %s\n",
__FILE__, __LINE__, memcached_strerror(NULL, A));fflush(stdout); } while (0
) | | #define WATCHPOINT_ERROR(A) do {fprintf(stderr, "\nWATCHPOINT %s:%d %s\n",
__FILE__, __LINE__, memcached_strerror(NULL, A));fflush(stdout); } while (0
) | |
| #define WATCHPOINT_IFERROR(A) do { if(A != MEMCACHED_SUCCESS)fprintf(stderr
, "\nWATCHPOINT %s:%d %s\n", __FILE__, __LINE__, memcached_strerror(NULL, A
));fflush(stdout); } while (0) | | #define WATCHPOINT_IFERROR(A) do { if(A != MEMCACHED_SUCCESS)fprintf(stderr
, "\nWATCHPOINT %s:%d %s\n", __FILE__, __LINE__, memcached_strerror(NULL, A
));fflush(stdout); } while (0) | |
| #define WATCHPOINT_STRING(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)
%s\n", __FILE__, __LINE__,__func__,A);fflush(stdout); } while (0) | | #define WATCHPOINT_STRING(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)
%s\n", __FILE__, __LINE__,__func__,A);fflush(stdout); } while (0) | |
| #define WATCHPOINT_STRING_LENGTH(A,B) do { fprintf(stderr, "\nWATCHPOINT %s
:%d (%s) %.*s\n", __FILE__, __LINE__,__func__,(int)B,A);fflush(stdout); } w
hile (0) | | #define WATCHPOINT_STRING_LENGTH(A,B) do { fprintf(stderr, "\nWATCHPOINT %s
:%d (%s) %.*s\n", __FILE__, __LINE__,__func__,(int)B,A);fflush(stdout); } w
hile (0) | |
| #define WATCHPOINT_NUMBER(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)
%zu\n", __FILE__, __LINE__,__func__,(size_t)(A));fflush(stdout); } while (0
) | | #define WATCHPOINT_NUMBER(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s)
%zu\n", __FILE__, __LINE__,__func__,(size_t)(A));fflush(stdout); } while (0
) | |
|
| | | #define WATCHPOINT_LABELED_NUMBER(A,B) do { fprintf(stderr, "\nWATCHPOINT % | |
| | | s:%d (%s) %s:%zu\n", __FILE__, __LINE__,__func__,(A),(size_t)(B));fflush(st | |
| | | dout); } while (0) | |
| | | #define WATCHPOINT_IF_LABELED_NUMBER(A,B,C) do { if(A) {fprintf(stderr, "\n | |
| | | WATCHPOINT %s:%d (%s) %s:%zu\n", __FILE__, __LINE__,__func__,(B),(size_t)(C | |
| | | ));fflush(stdout);} } while (0) | |
| #define WATCHPOINT_ERRNO(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %
s\n", __FILE__, __LINE__,__func__, strerror(A));fflush(stdout); } while (0) | | #define WATCHPOINT_ERRNO(A) do { fprintf(stderr, "\nWATCHPOINT %s:%d (%s) %
s\n", __FILE__, __LINE__,__func__, strerror(A));fflush(stdout); } while (0) | |
| #define WATCHPOINT_ASSERT_PRINT(A,B,C) do { if(!(A)){fprintf(stderr, "\nWAT
CHPOINT ASSERT %s:%d (%s) ", __FILE__, __LINE__,__func__);fprintf(stderr, (
B),(C));fprintf(stderr,"\n");fflush(stdout); __stack_dump(); } assert((A));
} while (0) | | #define WATCHPOINT_ASSERT_PRINT(A,B,C) do { if(!(A)){fprintf(stderr, "\nWAT
CHPOINT ASSERT %s:%d (%s) ", __FILE__, __LINE__,__func__);fprintf(stderr, (
B),(C));fprintf(stderr,"\n");fflush(stdout); __stack_dump(); } assert((A));
} while (0) | |
| #define WATCHPOINT_ASSERT(A) do { if (! (A)) {__stack_dump();} assert((A));
} while (0) | | #define WATCHPOINT_ASSERT(A) do { if (! (A)) {__stack_dump();} assert((A));
} while (0) | |
| #define WATCHPOINT_ASSERT_INITIALIZED(A) do { if (! (A)) { __stack_dump();
} assert(memcached_is_initialized((A))); } while (0); | | #define WATCHPOINT_ASSERT_INITIALIZED(A) do { if (! (A)) { __stack_dump();
} assert(memcached_is_initialized((A))); } while (0); | |
| #define WATCHPOINT_SET(A) do { A; } while(0); | | #define WATCHPOINT_SET(A) do { A; } while(0); | |
| | | | |
| #else | | #else | |
| | | | |
| #define WATCHPOINT | | #define WATCHPOINT | |
| #define WATCHPOINT_ERROR(A) | | #define WATCHPOINT_ERROR(A) | |
| #define WATCHPOINT_IFERROR(A) | | #define WATCHPOINT_IFERROR(A) | |
| #define WATCHPOINT_STRING(A) | | #define WATCHPOINT_STRING(A) | |
| #define WATCHPOINT_NUMBER(A) | | #define WATCHPOINT_NUMBER(A) | |
|
| | | #define WATCHPOINT_LABELED_NUMBER(A,B) | |
| | | #define WATCHPOINT_IF_LABELED_NUMBER(A,B,C) | |
| #define WATCHPOINT_ERRNO(A) | | #define WATCHPOINT_ERRNO(A) | |
| #define WATCHPOINT_ASSERT_PRINT(A,B,C) | | #define WATCHPOINT_ASSERT_PRINT(A,B,C) | |
| #define WATCHPOINT_ASSERT(A) | | #define WATCHPOINT_ASSERT(A) | |
| #define WATCHPOINT_ASSERT_INITIALIZED(A) | | #define WATCHPOINT_ASSERT_INITIALIZED(A) | |
| #define WATCHPOINT_SET(A) | | #define WATCHPOINT_SET(A) | |
| | | | |
| #endif /* DEBUG */ | | #endif /* DEBUG */ | |
| | | | |
| #endif /* __LIBMEMCACHED_WATCHPOINT_H__ */ | | #endif /* __LIBMEMCACHED_WATCHPOINT_H__ */ | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 8 lines changed or added | |
|