Changeset 553
- Timestamp:
- 05/07/07 21:49:00 (2 years ago)
- Files:
-
- trunk/server/thread.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/server/thread.c
r551 r553 388 388 * lazy-expiring as needed. 389 389 */ 390 item *mt_item_get_notedeleted(c har *key,size_t nkey, bool *delete_locked) {390 item *mt_item_get_notedeleted(const char *key, const size_t nkey, bool *delete_locked) { 391 391 item *it; 392 392 pthread_mutex_lock(&cache_lock); … … 399 399 * Returns an item whether or not it's been marked as expired or deleted. 400 400 */ 401 item *mt_item_get_nocheck(c har *key,size_t nkey) {401 item *mt_item_get_nocheck(const char *key, const size_t nkey) { 402 402 item *it; 403 403
