vfs: check userland buffers before reading them.
[haiku.git] / src / tests / kits / support / blocker / DestructionTest1.h
blob1aa51e2d5ae3c95b0520d08fd9b164b957c35afa
1 /*
2 $Id: DestructionTest1.h 301 2002-07-18 05:32:00Z tylerdauwalder $
4 This file defines a class for performing one test of BLocker
5 functionality.
7 */
10 #ifndef DestructionTest1_H
11 #define DestructionTest1_H
13 #include "LockerTestCase.h"
14 #include <string>
16 class DestructionTest1 : public LockerTestCase {
18 private:
20 protected:
22 public:
23 void TestThread1(void);
24 void TestThread2(void);
25 DestructionTest1(std::string name, bool isBenaphore);
26 virtual ~DestructionTest1();
27 static CppUnit::Test *suite(void);
30 #endif