summaryrefslogtreecommitdiff
path: root/memcached_dtrace.d
diff options
context:
space:
mode:
authordormando <dormando@rydia.net>2018-02-15 22:19:00 -0800
committerdormando <dormando@rydia.net>2018-02-15 22:19:00 -0800
commit0348682d54bf7660b0a4d4551cecddda6a159334 (patch)
tree32819ff1f95fb17a886250c0640ec3ed6f749f2a /memcached_dtrace.d
parent5c0face158f1d0f9c6add22b8f027e468bbe5368 (diff)
downloadmemcached-0348682d54bf7660b0a4d4551cecddda6a159334.tar.gz
fix for dtrace compilation
Diffstat (limited to 'memcached_dtrace.d')
-rw-r--r--memcached_dtrace.d8
1 files changed, 2 insertions, 6 deletions
diff --git a/memcached_dtrace.d b/memcached_dtrace.d
index 41617ff..3443795 100644
--- a/memcached_dtrace.d
+++ b/memcached_dtrace.d
@@ -111,19 +111,15 @@ provider memcached {
* Fired when a new item has been inserted.
* @param key the key just inserted
* @param keylen length of the key
- * @param nokeys the total number of keys currently stored,
- * including the key for which insert was called.
*/
- probe assoc__insert(const char *key, int keylen, int nokeys);
+ probe assoc__insert(const char *key, int keylen);
/**
* Fired when a new item has been removed.
* @param key the key just deleted
* @param keylen length of the key
- * @param nokeys the total number of keys currently stored,
- * excluding the key for which delete was called.
*/
- probe assoc__delete(const char *key, int keylen, int nokeys);
+ probe assoc__delete(const char *key, int keylen);
/**
* Fired when an item is linked into the cache.