~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/module.cc

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
#include <plugin/user_locks/module.h>
 
21
#include "config.h"
 
22
#include "plugin/user_locks/module.h"
23
23
 
24
24
using namespace drizzled;
25
25
 
41
41
  context.add(new plugin::Create_function<user_locks::ReleaseLocks>("release_locks"));
42
42
  context.add(new plugin::Create_function<user_locks::IsFreeLock>("is_free_lock"));
43
43
  context.add(new plugin::Create_function<user_locks::IsUsedLock>("is_used_lock"));
44
 
  context.add(new plugin::Create_function<user_locks::locks::WaitFor>("wait_for_lock"));
45
 
  context.add(new plugin::Create_function<user_locks::locks::ReleaseAndWait>("release_lock_and_wait"));
46
44
  context.add(new user_locks::UserLocks);
47
45
  context.add(new user_locks::barriers::UserBarriers);
48
46