~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/module.cc

  • Committer: Brian Aker
  • Date: 2010-11-27 18:24:26 UTC
  • mfrom: (1956 quick)
  • mto: This revision was merged to the branch mainline in revision 1958.
  • Revision ID: brian@tangent.org-20101127182426-ajc6g4v2346t4yn3
Mrge Trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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"));
44
46
  context.add(new user_locks::UserLocks);
45
47
  context.add(new user_locks::barriers::UserBarriers);
46
48