xref: /haiku/src/add-ons/kernel/file_systems/netfs/server/GlobalBlockerPool.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 // GlobalBlockerPool.h
2 
3 #ifndef NET_FS_GLOBAL_BLOCKER_POOL_H
4 #define NET_FS_GLOBAL_BLOCKER_POOL_H
5 
6 #include "BlockerPool.h"
7 
8 class GlobalBlockerPool {
9 public:
10 
11 	static	status_t			CreateDefault();
12 	static	void				DeleteDefault();
13 	static	BlockerPool*		GetDefault();
14 
15 private:
16 	static	BlockerPool*		sPool;
17 };
18 
19 #endif	// NET_FS_GLOBAL_BLOCKER_POOL_H
20