summaryrefslogtreecommitdiff
path: root/src/maps/shashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/maps/shashmap.h')
-rw-r--r--src/maps/shashmap.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/maps/shashmap.h b/src/maps/shashmap.h
index 8c94331..445ea77 100644
--- a/src/maps/shashmap.h
+++ b/src/maps/shashmap.h
@@ -1,12 +1,11 @@
/*:*
*: File: ./src/maps/shashmap.h
*:
- *: yChat; Homepage: ychat.buetow.org; Version 0.9.0-CURRENT
+ *: yChat; Homepage: www.yChat.org; Version 0.8.3-CURRENT
*:
*: Copyright (C) 2003 Paul C. Buetow, Volker Richter
*: Copyright (C) 2004 Paul C. Buetow
*: Copyright (C) 2005 EXA Digital Solutions GbR
- *: Copyright (C) 2006, 2007 Paul C. Buetow
*:
*: This program is free software; you can redistribute it and/or
*: modify it under the terms of the GNU General Public License
@@ -26,6 +25,7 @@
#ifndef SHASHMAP_H
#define SHASHMAP_H
+#include <pthread.h>
#include "hashmap.h"
#include "../monitor/dump.h"
@@ -43,6 +43,7 @@ class shashmap : protected hashmap<obj_type, key_type_, hash_type, alloc_type>,
public dumpable
{
private:
+ pthread_mutex_t mut_shashmap;
protected:
virtual void dumpit();