~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

  • Committer: Lee Bieber
  • Date: 2010-12-05 01:08:39 UTC
  • mfrom: (1966.2.15 catalogs)
  • Revision ID: kalebral@gmail.com-20101205010839-aht6yw6wdcwejlt1
Merge Brian - more cleanup of share pointers

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
#include "drizzled/pthread_globals.h"
48
48
#include "drizzled/util/tokenize.h"
49
49
 
 
50
#include <boost/foreach.hpp>
 
51
 
50
52
/* FreeBSD 2.2.2 does not define RTLD_NOW) */
51
53
#ifndef RTLD_NOW
52
54
#define RTLD_NOW 1
490
492
 
491
493
bool plugin_finalize(module::Registry &registry)
492
494
{
493
 
 
494
495
  /*
495
496
    Now we initialize all remaining plugins
496
497
  */
513
514
      }
514
515
    }
515
516
  }
 
517
 
 
518
  BOOST_FOREACH(plugin::Plugin::map::value_type value, registry.getPluginsMap())
 
519
  {
 
520
    value.second->prime();
 
521
  }
 
522
 
516
523
  return false;
517
524
}
518
525