~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.cc

  • Committer: Brian Aker
  • Date: 2010-08-18 16:12:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818161258-1vm71da888dfvwsx
Remove the code surrounding stack trace.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
#include "config.h"
 
21
 
 
22
#include <algorithm>
 
23
 
21
24
#include "drizzled/plugin/scheduler.h"
22
 
#include "drizzled/plugin/registry.h"
23
25
 
24
26
#include "drizzled/gettext.h"
 
27
#include "drizzled/errmsg_print.h"
25
28
 
26
29
using namespace std;
27
30
 
28
31
namespace drizzled
29
32
{
30
33
 
 
34
extern size_t my_thread_stack_size;
 
35
 
31
36
vector<plugin::Scheduler *> all_schedulers;
32
37
 
33
38
/* Globals (TBK) */
104
109
  return scheduler;
105
110
}
106
111
 
 
112
size_t plugin::Scheduler::getThreadStackSize() const
 
113
{
 
114
  return my_thread_stack_size;
 
115
}
 
116
 
107
117
} /* namespace drizzled */