~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.cc

  • Committer: lbieber
  • Date: 2010-08-07 20:22:09 UTC
  • mfrom: (1692 staging)
  • mto: This revision was merged to the branch mainline in revision 1694.
  • Revision ID: lbieber@orisndriz03-20100807202209-hw3ej00pw6l3xpit
Merge Shrews - fix incorrect cast of unsigned to signed

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
namespace drizzled
32
32
{
33
33
 
 
34
extern size_t my_thread_stack_size;
 
35
 
34
36
vector<plugin::Scheduler *> all_schedulers;
35
37
 
36
38
/* Globals (TBK) */
107
109
  return scheduler;
108
110
}
109
111
 
 
112
size_t plugin::Scheduler::getThreadStackSize() const
 
113
{
 
114
  return my_thread_stack_size;
 
115
}
 
116
 
110
117
} /* namespace drizzled */